


/* this code runs inline just after the page has been rendered */

        var elMHBGCell 	= document.getElementById("mastheadBackgroundCell");
        var elBoton = document.getElementById("selloFlotante");
        var elBotonGo = document.getElementById("selloFlotanteGo");
        var elMH = document.getElementById("masthead");

		if (! useBigHeader)
		{
			initialShrink = false;
			
	        newMhH = kCSSFullHeightBannerHeight - kShrinkBy ;  /* 370, defined in CSS */
	        
	        //move the image
	        elMH.style.height = newMhH.toString() + 'px';
	        elMHBGCell.style.height = newMhH.toString() + 'px';
	        elMHBGCell.style.backgroundPosition = ('0px ' + (0 - kShrinkBy ).toString() + 'px');
	        
	        //move the buttons
	        elBoton.style.top = (kBaseYPositionTopBannerButton - kShrinkBy).toString() + 'px';
	        elBotonGo.style.top = (kBaseYPositionBottomBannerButton - kShrinkBy).toString() + 'px';
		}
		



