sushi.changeBanner = function(url, href){
	var bn = document.getElementById("sushi_header_banner");
	bn.src = url;
	bn.parentNode.setAttribute("href", href);
}

sushi.onload.add(function(){
	var bdy = document.body;
	if(document.body.firstChild.nodeType == 3)document.body.removeChild(document.body.firstChild);
	
	//	height
	if(bdy.offsetHeight <= 1200)document.getElementById("body_container").style.height = "1200px";
	else if(sushi.browser.ie == 6){
		document.getElementById("body_shadow_left").style.height = bdy.offsetHeight + "px";
		document.getElementById("body_shadow_right").style.height = bdy.offsetHeight + "px";
	}

	//	Navigation
	if(sushi.browser.webkit)window.setTimeout("setupNavigation()",500);
	else setupNavigation();
})
