// on window resize, replace the baseline in home page (just for FF & Opera)
window.onload = function(event) {
	if(browser.isGecko || browser.isOpera) {
		var global = document.getElementById("global");
		var body = document.getElementsByTagName("body")[0];
		if(window.innerWidth < global.offsetWidth) {
			body.style.backgroundPosition = "-380px 128px";
		} else {
			body.style.backgroundPosition = "center 128px";
		}

	}
}

// on window resize, replace the baseline in home page (just for FF & Opera)
window.onresize = function(event) {
	if(browser.isGecko || browser.isOpera) {
		var global = document.getElementById("global");
		var body = document.getElementsByTagName("body")[0];
		if(window.innerWidth < global.offsetWidth) {
			body.style.backgroundPosition = "-399px 128px";
		} else {
			body.style.backgroundPosition = "center 128px";
		}

	}
}



