<!-- hide javascript
//begin link rollovers

	if (document.images) {
		//Global links
		
		//About MAD
		aboutOn = new Image
		aboutOff = new Image

		aboutOn.src = "lnks/about-on.gif"
		aboutOff.src = "lnks/about-off.gif"
		
		//Courses
		coursesOn = new Image
		coursesOff = new Image
		
		coursesOn.src = "lnks/courses-on.gif"
		coursesOff.src = "lnks/courses-off.gif"
		
		//Productions	
		productionsOn = new Image
		productionsOff = new Image
		
		productionsOn.src = "lnks/productions-on.gif"
		productionsOff.src = "lnks/productions-off.gif"
				
		//Get Involved
		involvedOn = new Image
		involvedOff = new Image
		
		involvedOn.src = "lnks/involved-on.gif"
		involvedOff.src = "lnks/involved-off.gif"		

		//Gallery
		galleryOn = new Image
		galleryOff = new Image
		
		galleryOn.src = "lnks/gallery-on.gif"
		galleryOff.src = "lnks/gallery-off.gif"		

		//level-specific links
		
		//News - home page
		hnewsOn = new Image
		hnewsOff = new Image
		
		hnewsOn.src = "lnks/hnews-on.gif"
		hnewsOff.src = "lnks/hnews-off.gif"
		
		//Contact - home page
		hcontactOn = new Image
		hcontactOff = new Image
		
		hcontactOn.src = "lnks/hcontact-on.gif"
		hcontactOff.src = "lnks/hcontact-off.gif"
	
		
		//Home - inner pages
		homeOn = new Image
		homeOff = new Image
		
		homeOn.src = "lnks/home-on.gif"
		homeOff.src = "lnks/home-off.gif"		
		
		//News - inner pages
		newsOn = new Image
		newsOff = new Image
		
		newsOn.src = "lnks/news-on.gif"
		newsOff.src = "lnks/news-off.gif"
		
		//Contact - inner pages
		contactOn = new Image
		contactOff = new Image
		
		contactOn.src = "lnks/contact-on.gif"
		contactOff.src = "lnks/contact-off.gif"
	
		
	}
	else {
	//what to show non-image browsers
		aboutOn = ""
		aboutOff = ""
		document.about = ""

		coursesOn = ""
		coursesOff = ""
		document.courses = ""	

		productionsOn = ""
		productionsOff = ""
		document.productions = ""

						
		involvedOn = ""
		involvedOff = ""
		document.involved = ""
		
		galleryOn = ""
		galleryOff = ""
		document.gallery = ""

		homeOn = ""
		homeOff = ""
		document.home = ""
		
		hnewsOn = ""
		hnewsOff = ""
		document.hnews = ""

		newsOn = ""
		newsOff = ""
		document.news = ""
			
		
		hcontactOn = ""
		hcontactOff = ""
		document.hcontact = ""		

		contactOn = ""
		contactOff = ""
		document.contact = ""		
	}

	// end the hiding -->
