jQuery(document).ready(function($) {

	if($(".go").length)
	{	  
	  $('#fc').css("left","947px");;
	  $('#white').fadeOut(3600, function() {
			$('#fc').stop().animate({"left":"0px"}, {duration:1200, easing:"easeOutCubic"})
      });
	  

		$('#slideshow').cycle({
			fx: 'fade',
			pager:  '#pager',
			timeout: 6000,
			speed: 2400,
			delay: 2400
		});
		
		$('#slideshow img').click(function (){
			document.location.href = jQuery(this).attr('rel');
		}).css('cursor', 'pointer');
		
		$('#fc li a').hover(
			function(){$(this).find('img').stop().fadeTo(50, .1);}, 
			function(){$(this).find('img').stop().fadeTo(500, 1);}
		);	
	};
});
