
$(document).ready(function(){

	$("div.block_orange td:first").addClass('first');
	$("div.news_one:first").addClass('news_first');
	
	$("div.table_fedosov").each(function(i){ 
  		$(this).find('tbody tr:even').addClass('bg');
	}); 
	
	if ($.browser.mozilla) { 
		$("div.table_fedosov").each(function(i){ 
  			$(this).addClass('table_fedosov_ff');
		}); 
	}
	
	$("table#img_top2 a").hover(function(){		 
  		$(this).parents('div.one').addClass("hover"); 
	},function(){ 
  		$(this).parents('div.one').removeClass("hover"); 
	});  
    
});

