
	var BRANDS; // разблокируем работу кнопок

$(document).ready(function(){

	var width_navbot = $("div.nav-bot").width();
	var width_nav = $("div.nav-bot div.nav").width();
	var width_nav = ((width_navbot-width_nav) / 2)+"px";
	$("div.nav-bot div.nav").css("padding-left", width_nav);
	
	$("table.rez-search, table.fl_doc").each(function(){
		$(this).find("tr:even").css("background-color", "#f6f6f6");
		$(this).find("tr th").css("background-color", "#ffffff");
	});
	$("table.tbl2").each(function(){
		$(this).find("tr:odd").css("background-color", "#e7e7e7");
	});
	
	$('.cont a,.cont span,.cont h1,.cont h2').click(function(){ //div.ban-inc 
		var link = $(this).parents('.cont').find('a').attr('href');
		window.location.href=link;
		return false;
	});
	
	//зебра таблиц
	$("table").each(function(){
		if ($(this).hasClass('brandsList')) {return false;}
		$(this).find("tr:even").css("background-color", "#f6f6f6");
		$(this).find("tr th").css("background-color", "#f6f6f6");
	});
	
});	
