/*--------------------------------------------------------------------------*
  
  zebraTable.js Version1.1 update( 2009 07 03 )
  
  MIT-style license.

  Copyright (c) 2009 Minoru Hayakawa E-riverstyle Design

  For details, see the web site:
  http://blog.e-riverstyle.com/
  
--------------------------------------------------------------------------*/



$(function(){
	$("tr:even").css("backgroundColor","#EBEBEB"); 
});

$(function(){
	$("tr:even").css("color","#505050"); 
});

$(function(){
	$("tr:first").css("color","#505050"); 
});

$(function(){
	$("tr:first").css("backgroundColor","#FFF"); 
});

$(function(){
	$("td").hover(hmouse,omouse);
});

function hmouse(){
	$(this).addClass("heighlight");
}

function omouse(){
	$(this).removeClass("heighlight");
}
