/*--------------------------------------------------------------------------*
  
  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(){
    //original
	$("tr:even").css("backgroundColor","#EBEBEB"); 
	$("tr:even").css("color","#505050"); 
	$("tr:first").css("color","#505050"); 
	$("tr:first").css("backgroundColor","#FFF"); 
	$("td").hover(hmouse,omouse);

    //added. (Not zebra)
	$("table.player2 tr").css("background","none");
	$("table.bookmark tr").css("background","none");
	$("#dhwInfo table tr").css("background","none");
});


function hmouse(){
	$(this).addClass("heighlight");
}

function omouse(){
	$(this).removeClass("heighlight");
}
