$(document).ready(function(){
			
	$(".nlfl").click(function() {
		$(".detailBox1").fadeIn('slow');
	});
	
	$(".imgClose").click(function() {
		$(".detailBox1").fadeOut('slow');
	});
	
	$(".nlfr").click(function() {
		$(".detailBox2").fadeIn('slow');
	});
	
	$(".imgClose").click(function() {
		$(".detailBox2").fadeOut('slow');
	});

	$('.bigTrailer_video').mouseover(				 
		function () {
			var $this = $(this);
			$('#uncensored',$this).stop(true,true).delay(12000).animate({
					'opacity': 0.7,
					'bottom':'0px'
				}, 1000);
		}
	);

});
