$(document).ready( function(){ 
        $('#goflynow').innerfade({ 
            animationtype: 'fade', 
            speed: 'slow', 
            timeout: 5000, 
            type: 'sequence',
            containerheight:'284px'
        });
        
        $('#navigation ul li a.dropdown').hover(function() {
		    
			$('.subnav').hide();
            
            $(this).next().show();
			
			$(this).next().hover(function() {}, 
				function() {
					$(this).hide();
                });
			}, function() {
		});
});
