
$(document).ready(function(){
	
	$(".hassubmenu").hover(
		function(){
			$(this).children(".submenu").stop(true,true).slideDown("slow");
			//$("#servicessubmenu").stop().slideDown("slow");
		},
		function(){
			$(this).children(".submenu").slideUp("slow");	
			//$("#servicessubmenu").stop().slideUp("slow");
		}
	);
});