$(document).ready (				   
	function()
	{	
		$("#tbl_zebr tr").each(colorize); 
		function colorize(index)
			{
				if(index % 2 == 1)       
    			$(this).addClass("tr_grey");
			}
	}
	
);
