$(document).ready(function(){
	$('input[type="text"]').addClass('text');
	$('input[type="submit"]').addClass('submit');
	$('table thead th:first-child').css('border-left-color','#2891d4');
	$('table thead th:last-child').css('border-right-color','#2891d4');

	$(".menu li").mouseover(function(){
		$(this).addClass("hover");
	}).mouseout(function(){
		$(this).removeClass("hover");
	});

	$('.index_projects li:last').css('margin','0');

	$('.sidebar_r .sbr_block:first').css('padding-top','0');

	$(".building_tab_i").hide();
	$(".building_tabs li:last").addClass("current").show();
	$(".building_tab_i:last").show();
	$(".building_tabs li").click(function(){
		$(".building_tabs li").removeClass("current");
		$(this).addClass("current");
		$(".building_tab_i").hide();

		var activeTab = $(this).find("a").attr("href");
		$(activeTab).fadeIn();
		return false;
	});

	$('.flats table tr:odd td').css('background','#f6f6f6');
	$('.flats table tr td:first-child').css('padding','5px').css('background','#fff !important').css('border','0').css('font-weight','bold');

	$('.project_adress li:odd a').css('background','#eee');
	$('.project_adress li:last').css('border','0');

});

