$(function () {
	$('#dv_web').hide();//hide all the images on the page
});

$(window).bind("load", function() {//The load event will only fire if the entire page or document is fully loaded
	doThis();
});

function doThis() {
	$('#dv_loading').hide();		
	//$('#dv_web').eq(0).fadeIn(500);
	$('#dv_web').show();
	fn_setearVideo();		
	document.getElementById("ifr_noticia").src="action/web/principal.php?method=noticiaInicio";
	//fn_abrePop();
}

