//images[id's] to get rollovers
var arRoll = new Array("ro_campingrules","ro_familyfun","ro_schedules","ro_sdcpasses", "ro_nav0","ro_nav1","ro_nav2","ro_nav3","ro_nav4","ro_nav5","ro_nav6","ro_nav7","ro_nav8","ro_nav9","ro_nav10", "ro_hfe", "ro_contact", "ro_sitemap");

function initPage() {
	if (document.images) {
		addRollovers(arRoll); //==> in resource.js

		el = getObj('search');
		if (el) {
			shover = function() { this.src = getRollSrc(this.src,"gif",1); }
			snohover = function() { this.src = getRollSrc(this.src,"gif",0); }
			el.onmouseover = shover;
			//el.onfocus = shover;
			el.onmouseout = snohover;
			//el.onblur = snohover;
		}
		el = getObj('enewsgo');
		if (el) { 
			ehover = function() { this.src = getRollSrc(this.src,"gif",1); }
			enohover = function() { this.src = getRollSrc(this.src,"gif",0); }
			el.onmouseover = ehover;
			//el.onfocus = ehover;
			el.onmouseout = enohover;
			//el.onblur = enohover;
		}
	}
	
	myFlash = new FlashObject("images/mp/tw_main_flash.swf", "sdcflash", "528", "272", 6.0, "#91481F");
	myFlash.addParam("WMode","transparent");
	myFlash.write("flash");
}
addEvent(window,'load',initPage);