//images[id's] to get rollovers
var arRoll = new Array("ro_ticketssm","ro_maps","ro_schedules","ro_gallery","ro_ecards","ro_faq","ro_employment","ro_press","ro_contact","ro_nav0","ro_nav1","ro_nav2","ro_nav3","ro_nav4","ro_nav5","ro_nav6","ro_nav7","ro_nav8","ro_nav9","ro_nav10","ro_nav11","ro_nav12","ro_tickets");

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/sdc_main_flash_summer07c.swf", "sdcflash", "528", "272", 6.0, "#131045");
	//myFlash.addParam("wmode", "transparent");
	//myFlash.write("flash");
}
addEvent(window,'load',initPage);