$(document).ready(function() {
    $('#teamMembers').cycle({ 
      prev:   '#previousTeamMember', 
      next:   '#nextTeamMember', 
      timeout: 0 
    });
    
    $('#testimonials').shuffle();
    
    $('#testimonials').cycle({ 
      prev:   '#previousTestimonial', 
      next:   '#nextTestimonial',       
      timeout: 0 
    });
    
     $('#listOfScreenshots').cycle({ 
      prev:   '.previousScreenshot', 
      next:   '.nextScreenshot', 
      timeout: 0 
    });

	$("a[rel=screenshots]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return "<div id='fancybox-title-over'>" + $(this).attr("title") + "<br /><div style='float:right;'>ScreenShot " +  (currentIndex + 1) + ' / ' + currentArray.length + '</div><br /></div>';
		}
	});

  $(".zoomButton").click(function() {
    $(".screenshotThumbnail :visible").click();
  });
  
  $(".zoomButton").css({"cursor":"pointer"});

});
