jQuery(document).ready(function() {
	jQuery('#screenshots a').fancyZoom( {closeOnClick: true});
	
	/* BINDINGS */
	
	var hoverdiv = jQuery('<div id="screenshot_hover"></div>');
	
	jQuery('.screenshot a').hover(
		function(){
			jQuery(this).prepend(hoverdiv);
		},
		function(){
			hoverdiv.remove();
		});
		
	/* VIDEO */
	
	$('#tv').bind('click',function(){
		if ($(this).hasClass('playing')) {
			$(this).removeClass('playing');
			document.getElementById('jayleno').pause();
			
		} else {
			$(this).addClass('playing');
			document.getElementById('jayleno').play();
		}
	});
	
	$(document).ready(function(){
		$('#tv').addClass('playing');
	});
	
	
});

