
$(document).ready(function() {	
	//alert("Yep, i'm here.");
	
	$('a','.screen').fancybox({
		'hideOnContentClick': true,
		'titlePosition': 'over'
	});

	$('a','.video').fancybox({
		'titlePosition': 'over',
		'width': 960
	});

	$('.exclusive').hover(
	   function(event) {
	       var el = $(this).parent().find('.hintBubble');
	       $(el).css('display','block');
	       $(el).animate({top: -80, opacity: 1}, 200);  	        
       },
       function() {
           $('.hintBubble').fadeOut(200); 
           setTimeout("$('.hintBubble').css('opacity','0').css('top','-92px')", 150);           
       });


});

