$(document).ready(function(){
	
	$("#mn_li_a_services, #servicesSubMenu").hover(
		function(){
			$("#servicesSubMenu").show();
		},
		function(){
			$("#servicesSubMenu").hide();
		});
	$("#mn_li_a_productSpec, #productsSubMenu").hover(
			function(){
				$("#productsSubMenu").show();
			},
			function(){
				$("#productsSubMenu").hide();
			});
	
});