// lightview normales (iframes) 
$(function() {
$(".lightview").click(function() {
	$('#ContentIframe').css({'display':'block'});
	$IframeURL = $(this).attr("rel");
	$("#BoxContenido").attr('src', $IframeURL);
	$(".BtnCerrarLvw a.BtnCierra").click(function() { 
		$("#ContentIframe").css({'display':'none'});
	});	
});

});

