$(document).ready(function(){

		var topConfig = {    
		     over: topMouseOver, // function = onMouseOver callback (REQUIRED)    
		     timeout: 500, // number = milliseconds delay before onMouseOut    
		     out: topMouseOut // function = onMouseOut callback (REQUIRED)    
		};
		
		var bottomConfig = {    
		     over: bottomMouseOver, // function = onMouseOver callback (REQUIRED)    
		     timeout: 500, // number = milliseconds delay before onMouseOut    
		     out: bottomMouseOut // function = onMouseOut callback (REQUIRED)    
		};
		
		$("#topMenu1077, #topMenu1265, #topMenu1079, #topMenu1080, #topMenu1142, #topMenu2562, #topMenu2630, #topMenu2640").hoverIntent( topConfig )
		
		$("#botMenu1081, #botMenu1082, #botMenu1083, #botMenu1084, #botMenu1085, #botMenu1086, #botMenu1087, #botMenu2647, #botMenu2659, #botMenu2669, #botMenu2681, #botMenu2695, #botMenu2700, #botMenu2707").hoverIntent( bottomConfig )
		
		
		function topMouseOver() {
				$(".topNavSub", this).animate({ height: 'toggle'}, 200);
		};
		
		function topMouseOut() {
				$(".topNavSub", this).animate({ height: 'toggle'}, 500);
		};
		
		
		function bottomMouseOver() {
				$(".bottomNavSub", this).animate({ height: 'toggle'}, 200);
		};
		
		function bottomMouseOut() {
				$(".bottomNavSub", this).animate({ height: 'toggle'}, 500);
		};
		

});




