$(document).ready(function ()
{
$(".etBlockInfo").bind("mouseover",highlight);
$(".etBlockInfo").bind("mouseout",unhighlight);
});
function unhighlight()
{
	$(this).addClass("gray_bg");
	$(this).removeClass("blue_bg");
}
function highlight()
{
	$(this).addClass("blue_bg");
	$(this).removeClass("gray_bg");
}
