
$(function() {
  $(".menu_parent").hover(function(){
		var id = $(this).attr("id");
		var tmpStr1 = "#"+id+"_submenu";
		$(tmpStr1).fadeIn("fast");
	},function(){
		var id = $(this).attr("id");
		var tmpStr1 = "#"+id+"_submenu";
		$(tmpStr1).fadeOut("fast");
	});
  $(".sub_menu_block").hover(function(){
		var id = $(this).attr("id");
		var tmpStr1 = "#"+id+"_submenu";
		$(tmpStr1).fadeIn("fast");
	},function(){
		var id = $(this).attr("id");
		var tmpStr1 = "#"+id+"_submenu";
		$(tmpStr1).fadeOut("fast");
	});
});

