jQuery(document).ready(function() 
{ 
   // Раскраска таблиц класса .data 
   jQuery("table.data").each(function(){
          jQuery(this).find('tr').each(function(index){
		  if (index % 2) jQuery(this).addClass('even');  
		   else  jQuery(this).addClass('odd');
		})
   })

   // Кнопка прокрутки Вверх
		$('.toTop')
			.click(function(){
				jQuery('html, body').animate({
				scrollTop: jQuery("html").offset().top
				}, 500);	
		});
})
