function tableColorChange(id)
{
	var overcolor='#cce5fa';
 var color1='#f6fbfe';  //first color
 var color2='#e9f4fd';  //second color
 $("#" + id +" tr:even").css("backgroundColor",color1);
 $("#" + id +" tr:odd").css("backgroundColor",color2);
  $("#" + id +" tr").bind("mouseover", function(){ $(this).css("backgroundColor",overcolor);});
  $("#" + id +" tr:even").bind("mouseout",function(){$(this).css("backgroundColor",color1);});
$("#" + id +" tr:odd").bind("mouseout",function(){$(this).css("backgroundColor",color2);});
	
}

