// JavaScript Document3
var isIE = /*@cc_on!@*/false;
function rescale2(){
	var mi_ancho = document.documentElement.offsetWidth;
	var mi_alto = document.documentElement.offsetHeight;
	$('#bannerIMG').css('left', (mi_ancho-568)/2)
	$('#bannerIMG').css('top', (mi_alto-420)/2)
}
$(document).ready(function() {	
	return;		   
	$('body').before('<div id="banner" style="position:relative; height:0; width:0;"><a href="#/promociones" id="bannerIMG" style="position:relative; z-index:50; border:none"><img  src="jsBanCity/hipotecario.gif"  	style="border:none"/></a></div>');
	//
	$('#bannerIMG').click(function(){
	   $('#bannerIMG').hide()
	});
	//
	function resizeWindow2( e ) { rescale2() };
	rescale2();
	$(window).bind("resize", resizeWindow2);
});

