// dropdown menu
jQuery(document).ready(function () {	

jQuery('ul.dropdown ul').css('display', 'none');

	jQuery('ul.dropdown li').hover(
		function () {
			//show its submenu
			jQuery('ul', this).slideDown(175);
		}, 
		function () {
			//hide its submenu
			jQuery('ul', this).slideUp(250);			
		}
	);
	
});
