/* table highlighting START */
$(document).ready(function()
{
	var i = 0;
	$("table.common tr").each(function()
	{
		if (i % 2)
		{
			$(this).addClass("highlight");
		}
		i++;
	});
});
$("table.common tr").mouseover(function()
{
	$(this).addClass("hover");
});
$("table.common tr").mouseout(function()
{
	$(this).removeClass("hover");
});
/* table highlighting END */

