function news()
{
//1
var ranNum= Math.round(Math.random() * 1);
if (ranNum == 0){document.write('It\'s time to start thinking about booking your 2012 Alaska Fishing Trip'); } // clients1
if (ranNum == 1){document.write('Visit Krog\'s Kamp at <a href="http://www.krogskamp.com">http://www.krogskamp.com<\/a>'); } // clients1
}

function switchMenu(obj) {
	var el = document.getElementById(obj);
	if ( el.style.display != "none" ) {
		el.style.display = 'none';
	}
	else {
		el.style.display = '';
	}
}

