$(document).ready(function() {
		
		var inAnimation = false;
		$(".personality-button a").toggle(function() {
			if (inAnimation == true) return false;
			inAnimation = true;
  			$(".serious-pic").fadeOut(200, function(){
  				$(".personality-pic").fadeIn(200);
  				inAnimation = false;
  			});
  			$(".personality-button").addClass('activated');
  			
		}, function() {
			if (inAnimation == true) return false;
			inAnimation = true;
  			$(".personality-pic").fadeOut(200, function(){
  				$(".serious-pic").fadeIn(200);
  				inAnimation = false;
  			});
  			$(".personality-button").removeClass('activated');
		});
		
		//Crew info hover
		$('ul#crew li').hover(function () {
        	$(this).find('a.crew-over').stop().fadeTo('fast', 0.9);
        },function () {
        	$(this).find('a.crew-over').stop().fadeTo('fast', 0);
      	});
		
		//Open tweet links in new tab
		$(".tweet a").attr("target","_blank");
		
});
