$(document).ready(function() { 

$(".mainNav_flyout_item").hoverIntent(flyoutOver, flyoutOut); 
$("#mainNav_services").hoverIntent(nav_showServices, nav_hideServices); 
$("#mainNav_markets").hoverIntent(nav_showMarkets, nav_hideMarkets); 
}); 
function nav_showServices(){ 
$('.mainNav_flyout_services').css( {display: "block"} );
	$('.mainNav_flyout_services').animate( { width: '302px'} , 450, 'easeInQuart', function() {
		  // Animation complete.
	}); 
} 

function nav_hideServices() { 
	$('.mainNav_flyout_services').animate( { width: '0px'} , 600, 'easeOutQuart', function() {
		  $('.mainNav_flyout_services').css( {display: "none"} );
	}); 
} 
function nav_showMarkets(){ 
$('.mainNav_flyout_markets').css( {display: "block"} );

	$('.mainNav_flyout_markets').animate( { width: '302px'} , 450, 'easeInQuart', function() {
		  // Animation complete.
	}); 
} 

function nav_hideMarkets() { 
	$('.mainNav_flyout_markets').animate( { width: '0px'} , 600, 'easeOutQuart', function() {
		  $('.mainNav_flyout_markets').css( {display: "none"} );

	}); 
} 
function flyoutOver(){ 
	$(this).children(".mainNav_flyoutHover").animate( { bottom: '0px'} , 200, 'easeOutQuart', function() {
		  // Animation complete.
	}); 
} 

function flyoutOut() { 
	$(this).children(".mainNav_flyoutHover").animate( { bottom: '-56px'} , 200, 'easeOutQuart', function() {
		  // Animation complete.
	}); 
} 
