$(document).ready(function() {
	
	// cycle images
	$('#slideshow').cycle({
		fx:    'fade',
		speed:  1500,
		timeout:  10000,
		next: "#next",
		prev: "#prev",
		pause:  1 
	});	// close cycle
	
	// menu animation & dropdown animation			   
	$('#nav > li').removeClass('hover');
	$('#nav > li > ul').hide().removeClass('submenu');
	
	$('#nav > li').hoverIntent(function(){	
		$(this).stop().children('a').stop(true, true).animate({ 'background-position' : '0 -55px'}, 500, 'easeInOutQuad');
		$(this).children('ul').slideDown(500,'swing');
	}, function(){
		$(this).stop().children('a').animate({ 'background-position' : '0 -200px'}, 500, 'easeInOutQuad');
		$(this).children('ul').slideUp(500,'swing');
	}); // close menu animation
	
	// current state disable the hover function, still animate the submenu
	$('#body_1 #nav_1, #body_2 #nav_2, #body_3 #nav_3, #body_4 #nav_4, #body_5 #nav_5, #body_6 #nav_6, #body_7 #nav_7, #body_8 #nav_8, #body_9 #nav_9').hoverIntent(function(){	
		$(this).children('ul').slideDown(500,'swing');
	},function() {
		$(this).children('ul').slideUp(500,'swing');
	});
	
	/*$('#spinner').click(function() {
		
		$('#nav > li#nav_9 > a').animate({ 'background-position' : '0 -2412px'}, 5000, 'easeOutBounce').delay(2500).animate({ 'background-position' : '0 -200px'}, 5000, 'easeOutBounce');
		$('#nav > li#nav_8 > a').animate({ 'background-position' : '0 -2172px'}, 4500, 'easeOutBounce').delay(3000).animate({ 'background-position' : '0 -200px'}, 4500, 'easeOutBounce');
		$('#nav > li#nav_7 > a').animate({ 'background-position' : '0 -1932px'}, 4000, 'easeOutBounce').delay(3500).animate({ 'background-position' : '0 -200px'}, 4000, 'easeOutBounce');
		$('#nav > li#nav_6 > a').animate({ 'background-position' : '0 -1692px'}, 3500, 'easeOutBounce').delay(4000).animate({ 'background-position' : '0 -200px'}, 3500, 'easeOutBounce');
		$('#nav > li#nav_5 > a').animate({ 'background-position' : '0 -1452px'}, 3000, 'easeOutBounce').delay(4500).animate({ 'background-position' : '0 -200px'}, 3000, 'easeOutBounce');
		$('#nav > li#nav_4 > a').animate({ 'background-position' : '0 -1212px'}, 2500, 'easeOutBounce').delay(5000).animate({ 'background-position' : '0 -200px'}, 2500, 'easeOutBounce');
		$('#nav > li#nav_3 > a').animate({ 'background-position' : '0 -972px'}, 2000, 'easeOutBounce').delay(5500).animate({ 'background-position' : '0 -200px'}, 2000, 'easeOutBounce');
		$('#nav > li#nav_2 > a').animate({ 'background-position' : '0 -732px'}, 1500, 'easeOutBounce').delay(6000).animate({ 'background-position' : '0 -200px'}, 1500, 'easeOutBounce');
		$('#nav > li#nav_1 > a').animate({ 'background-position' : '0 -492px'}, 1000, 'easeOutBounce').delay(6500).animate({ 'background-position' : '0 -200px'}, 1000, 'easeOutBounce');
		
	
	});*/

}); // close doc ready
