	<!-- + Posiciona skyscraper + -->
function posicionaSky(){
	try
	{
	var widthWindow 	= window.innerWidth || document.body.clientWidth;
	var withConteudo	= 990;
	var distancia			= 6;
	
	var posX					= ((widthWindow / 2) + (withConteudo / 2) + distancia) + "px";
	document.getElementById("skyscraper").style.left = posX;
	}
	catch(ex)
	{
		alert(ex);
	}
}
	<!-- - Posiciona skyscraper - -->