registerEvent(window,"domready",addTB);
registerEvent(window,"domready",shiftBackground);

window.onresize=function() {
	shiftBackground();
}


function shiftBackground(){
	document.body.style.backgroundPosition=(Math.floor((getViewportWidth()-836)/2)%50)-(browser.isIE?25:25)+"px 0px";
}