// JavaScript Document

// set initial visibility of the tee times div
function init(){
	hideIt("leftColClosed");
}

// show div 
function showIt(id){
	object = document.getElementById(id);
	object.style.display = "block";
}

// hide div
function hideIt(id){
	object = document.getElementById(id);
	object.style.display = "none";
}
// open and close the left bar
function changeNav(nav) {
	var sfEls = document.getElementById("contentArea");
		if(nav==0) {
			sfEls.style.width = "765px";
		}
		if(nav==1){
			sfEls.style.width = "942px";
		}
}
