//images[id's] to get rollovers
var arRoll = new Array("ro_maps","ro_schedules","ro_gallery","ro_ecards","ro_faq","ro_employment","ro_pressroom","ro_contact","ro_nav0","ro_nav1","ro_nav2","ro_nav3","ro_nav4","ro_nav5","ro_nav6","ro_nav7","ro_tickets");

function initPage() {
	if (document.images) {
		addRollovers(arRoll);

		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.onmouseout = 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.onmouseout = enohover;
		}
	}
	myFlash = new FlashObject("images/ww_main_flash.swf", "wwflash", "528", "272", 6.0, "#131045");
	myFlash.write("flash");
}
addEvent(window,'load',initPage);