$(function(){
	 
	    //Hide SubLevel Menus
	    $('#navmain ul li ul').hide();
	 
	    //OnHover Show SubLevel Menus
	    $('#navmain ul li').hover(
	        //OnHover
        function(){
            //Hide Other Menus
	            $('#navmain ul li').not($('ul', this)).stop();
	 
	           
	 
            //Remove the Border
	            $('ul li.arrow', this).css('border-bottom', '0');
	 
	            // Show Hoved Menu
	            $('ul', this).slideDown();
							
	        },
	        //OnOut
	        function(){
	            // Hide Other Menus
	            $('ul', this).slideUp();
	 
	            //Remove the Arrow
            $('ul li.arrow', this).remove();
	        }
	    );
	 
	});
