$(document).ready(function() {
	
	setTimeout(function() {
		
		$('#slideshow, a').show();

		$('#slideshow').cycle( {
			fx: 'scrollVert',
			easing:  'easeInOutQuart',
			timeout: 7000,
			speed: 500,
			pause: 1,
			fastOnEvent: 350,
			pager: '#staticMessage',
			startingSlide: 2     
		});

//		$('#slideshow').cycle( {
//			fx: 'scrollVert',
//			easing:  'easeInOutQuart',
//			speedIn: 1000,
//			speedOut: 1000,
//			pause: 1,
//			pager: '#staticMessage',
//			startingSlide: 2,
//			manualTrump: true
//		});	
		
		 $('#slideshow').cycle('pause');	
	
	}, 1000);
	
	//pause and resume when hovering over image map areas
    $(".playpause").hover(function() {
        $('#slideshow').cycle('pause');
    },function() {
        $('#slideshow').cycle('resume');
    });
	
	//Left_Sidebar Rollover Navigation on Hover Event (set as zero index array)
	$('#goto1').hover(function() { 
		$('#slideshow').cycle(0); 
	}); 

	$('#goto2').hover(function() {  
		$('#slideshow').cycle(1);  
	}); 

	$('#goto3').hover(function() {  
		$('#slideshow').cycle(2);   
	}); 
	
	$('#goto4').hover(function() {  
		$('#slideshow').cycle(3);  
	});
	
	$('#promo').hover(function() {  
		$('#slideshow').cycle(4);  
	});
	
	

});

