/** Lightbox **/

jQuery(document).ready(function(e) {
	/* jQuery("#lightboxWrapper").delay(1000).show(1000); */
	
	jQuery("#teaserText").bind("click",function(){
		jQuery("#lightboxWrapper").show(1000);
	});
	
	jQuery("#teaserText").hover(function(){
		jQuery("#teaserWrapper").addClass("hover");
	},function(){
		jQuery("#teaserWrapper").removeClass("hover");
	});
	
	jQuery("#lightboxWrapper").bind("click",function(){
		jQuery(this).hide(1000);
		document.location.reload(); 
	});
	
	jQuery("#lightboxMovie").bind("mouseenter",function(){
		jQuery("#lightboxWrapper").unbind("click");
	});
	
	jQuery("#lightboxMovie").bind("mouseleave",function(){
		jQuery("#lightboxWrapper").bind("click",function(){
			jQuery(this).hide(1000);
			document.location.reload();
		});
	});
	
	jQuery("#lightboxHeadline").bind("mouseenter",function(){
		jQuery("#lightboxWrapper").unbind("click");
	});
	
	jQuery("#lightboxHeadline").bind("mouseleave",function(){
		jQuery("#lightboxWrapper").bind("click",function(){
			jQuery(this).hide(1000);
			document.location.reload();
		});
	});
});

function showVideoLayer() {
	jQuery("#lightboxWrapper").show();
}
