function changeStyle (style) {
	var PageMaster = document.getElementById("PageMaster");
	var MenuBG = document.getElementById("TD_Menu");
	var Logo = document.getElementById("Logo");
	var GolfContentTable = document.getElementById("GolfContentTable");
	var BBContentTable = document.getElementById("BBContentTable");
	var GolfUnderMenu = document.getElementById("dnn_UnderMenuPane");
	
	if (style == "baseball") {
		createCookie('cookieStyle','baseball',360);
		PageMaster.style.background = 'white url(/portals/0/skins/DualSport/images/altbg.png) repeat-x';
		MenuBG.style.background = '#5c2b2b url(/portals/0/skins/DualSport/images/MenuBG02.png) repeat-x';
		Logo.style.background = 'url(/portals/0/skins/DualSport/images/JC_Logo_BB.png) no-repeat';
		BBContentTable.style.display = 'block';
		GolfContentTable.style.display = 'none';
		GolfUnderMenu.style.display = 'none';
	} else {
		createCookie('cookieStyle','golf',360);
		PageMaster.style.background = 'white url(/portals/0/skins/DualSport/images/altbg-Blue.png) repeat-x';
		MenuBG.style.background = ' #83a1a5 url(/portals/0/skins/DualSport/images/MenuBG01.jpg) repeat-x';
		Logo.style.background = 'url(/portals/0/skins/DualSport/images/JC_Logo_02.png) no-repeat';
		GolfContentTable.style.display = 'block';
		BBContentTable.style.display = 'none';
		GolfUnderMenu.style.display = 'block';
	}
}

function loadStyle () {
	var x = readCookie('cookieStyle');
	if (x) {
		if (x == 'baseball') {
			changeStyle('baseball');
		} else if (x == 'golf') {
			changeStyle('golf');
		}
	}
}