// Adjust the middle shadow for all browsers to see, except IE6 bc its a POS from 2001, stop using it.
window.onload = function() {
	contentObject = document.getElementById('content');
	contentHeight = contentObject.clientHeight;
	shadowTop = contentHeight + 92;
	document.getElementById('bottomshadow').style.top = shadowTop + "px";
	document.getElementById('bottomshadow').style.visibility = "visible";
}

//Nav current page
function navHome() {
	document.getElementById('nav1').style.background = "url(/images/nav.jpg)";
	document.getElementById('nav1').style.backgroundPosition ="-202px -30px";
}
function navBeer() {
	document.getElementById('nav2').style.background = "url(/images/nav.jpg)";
	document.getElementById('nav2').style.backgroundPosition ="-202px -70px";
}
function navEvents() {
	document.getElementById('nav3').style.background = "url(/images/nav.jpg)";
	document.getElementById('nav3').style.backgroundPosition ="-202px -110px";
}
function navMap() {
	document.getElementById('nav4').style.background = "url(/images/nav.jpg)";
	document.getElementById('nav4').style.backgroundPosition ="-202px -150px";
}
function navFestivals() {
	document.getElementById('nav5').style.background = "url(/images/nav.jpg)";
	document.getElementById('nav5').style.backgroundPosition ="-202px -190px";
}