$(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');
	});
	
});
