jQuery(document).ready(function () {	
	
	jQuery('#navigation li').hover(
		function () {
			//show its submenu
			jQuery('ul', this).slideDown(100);

		}, 
		function () {
			//hide its submenu
			jQuery('ul', this).slideUp(100);			
		}
	);	
	jQuery(".menu-item-41 a:first").click(function(){ 
        return false;
    });
	
});
