// menu sliding

jQuery(document).ready(function () {	
	jQuery('#menus li').hover(
		function () {
			//show its submenu
			jQuery('ul', this).slideDown(300);
		}, 
		function () {
			//hide its submenu
			jQuery('ul', this).slideUp(350);			
		}
	);
});
