var thisId = "";
var thisTit = "";
var nomePrincipal = "Banco de Bolso";
var iNavHst = new Array();
var tNavHst = new Array();
iNavHst[0] = "menu";
tNavHst[0] = "Início";

var aId = "";
var aTit = "";
var currentWidth = 0;
var checkTimer;
function addHst(i_,t_) {
	iNavHst.unshift(i_);
	tNavHst.unshift(t_);
}
function delHst(i_,t_) {
	iNavHst.shift(i_);
	tNavHst.shift(t_);
}

function ajustaPagina() {
    setTimeout(scrollTo, 100, 0, 1);
    setTimeout(checkOrientAndLocation, 0);
    checkTimer = setInterval(checkOrientAndLocation, 300);
}
function carregaPagina() {
	if (thisId != "") {
		iNavHst.unshift(thisId);
		tNavHst.unshift(thisTit);
	}
	ajustaPagina();
}
function checkOrientAndLocation()
{
    if (window.innerWidth != currentWidth)
    {   
        currentWidth = window.innerWidth;
        var orient = currentWidth == 320 ? "profile" : "landscape";
        document.body.setAttribute("orient", orient);
        setTimeout(scrollTo, 100, 0, 5);
    }
}







