/*-----------------jQuery-------------------*/
$(document).ready(function(){ 
	/*-----------------Top navigation-------------------*/
     $("#PrimaryMenu li").mouseover(function() {
         $(this).find("ul.submenu").slideDown(300).show(); //Drop down the subnav on click  
         $(this).hover(function() {  
         }, function(){  
             $(this).find("ul.submenu").slideUp(100); //When the mouse hovers out of the subnav, move it back up  
         });  
     });  
});

/* .stop(true, true)*/
