$('document').ready(function()
{
$('.table1 tr:even').css('background-color','#c1c1c1');
$('.table1 tr:odd').css('background-color','#c9c9c9');
});
