$(function(){

	$("#but_home").bind("mouseenter",function(){
		$(this).toggleClass("but_home1");
	}).bind("mouseleave",function(){
		$(this).toggleClass("but_home1");
	});
	
	$("#but_portfolio").bind("mouseenter",function(){
		$(this).toggleClass("but_portfolio1");
	}).bind("mouseleave",function(){
		$(this).toggleClass("but_portfolio1");
	});
	
	$("#but_projects").bind("mouseenter",function(){
		$(this).toggleClass("but_projects1");
	}).bind("mouseleave",function(){
		$(this).toggleClass("but_projects1");
	});
	
	$("#but_uslugi").bind("mouseenter",function(){
		$(this).toggleClass("but_uslugi1");
	}).bind("mouseleave",function(){
		$(this).toggleClass("but_uslugi1");
	});
	
	$("#but_contacts").bind("mouseenter",function(){
		$(this).toggleClass("but_contacts1");
	}).bind("mouseleave",function(){
		$(this).toggleClass("but_contacts1");
	});
	
	$("#but_about").bind("mouseenter",function(){
		$(this).toggleClass("but_about1");
	}).bind("mouseleave",function(){
		$(this).toggleClass("but_about1");
	});

});


