jQuery(document).ready(function($){
	
	$('#home-slideshow').hide().before('<div id="home-viewbtn"><a href="#">View Photo Highlights</a></div>');
	$('#home-viewbtn a').click(function(){
		$('#home-message, #home-viewbtn').fadeOut(500, startSlideshow);
		$('#secondary').animate({ 'margin-top': '465px' }, 500, 'swing');
		return false;
	});

	function startSlideshow () {
		$('#home-slideshow .gallery')
			.find('a').click(function(){ return false; }).end()
			.find('br').remove().end()
			.cycle({
				fx:      'fade'
				, speed:    1000
				, timeout:  5000
				, delay:	250
				/*
				, next:		'.gallery .gallery-item img'
				*/
			})
		;
		$('#home-slideshow').fadeIn(1500);
	}

	/*
	if ( !( ($.browser.msie) && (parseInt($.browser.version) < 8) ) ) {
		// don't do this for IE if less than v8
	}
	*/
});

