$(document).ready(function() {
	
 	// хом страница, иконки пацентрунах		
	$("a.homeIcon").hover(
		function(evt) {
			var _img = $("#img_"+this.id);
			var _new_src = _img.attr("src").split(".").join("-over.");
			_img.attr("src",_new_src);
			
		},
		function(evt) {		
			var _img = $("#img_"+this.id);
			var _new_src = _img.attr("src").split("-over.").join(".");
			_img.attr("src",_new_src);
		}
	);
	
	// главное меню
	$(".mmenu").hover(
		function(e) {
			//if ($(this).attr("hover") != "true") {
				var _id = this.id.split("_")[1];
				$("#d_"+_id).css("display","");
				$(this).attr("hover","true");
			//}
		},
		function(e) {
			if ($(this).attr("hover") != "false") {
				var _id = this.id.split("_")[1];
				$(this).attr("hover","false");			
				if ($("#d_"+_id).attr("hover") != "true") {
					$("#d_"+_id).css("display","none");		
				}
			}
		}
	);
	$(".smenu").hover(
		function(e) {
			if ($(this).attr("hover") != "true") {
				$(this).attr("hover","true");
				var _id = this.id.split("_")[1];
				$("#a_"+_id).attr("hover","false");
			}			
		},
		function(e) {
			if ($(this).attr("hover") != "false") {
				var _id = this.id.split("_")[1];
				$(this).attr("hover","false");
				if ($("#a_"+_id).attr("hover") == "false") {
					$(this).css("display","none");		
				}
			}					
		}
	);
	
});