$( '#mod_navhorizontal li' ).hover( 
	function() {
		$( this ).find( 'ul' ).fadeIn( 300 );
	},
	function() {
		$( this ).find( 'ul' ).fadeOut( 300 );
	}
);
