
		var imgs = new Array;
		imgs['schemes_on'] = new Image;
		imgs['schemes_on'].src = '/img/m_schemes.gif';
		imgs['schemes_off'] = new Image;
		imgs['schemes_off'].src = '/img/m_schemes.png';
		imgs['tourneys_on'] = new Image;
		imgs['tourneys_on'].src = '/img/m_tourneys.gif';
		imgs['tourneys_off'] = new Image;
		imgs['tourneys_off'].src = '/img/m_tourneys.png';
		imgs['results_on'] = new Image;
		imgs['results_on'].src = '/img/m_results.gif';
		imgs['results_off'] = new Image;
		imgs['results_off'].src = '/img/m_results.png';
		imgs['standings_on'] = new Image;
		imgs['standings_on'].src = '/img/m_standings.gif';
		imgs['standings_off'] = new Image;
		imgs['standings_off'].src = '/img/m_standings.png';
		imgs['calendar_on'] = new Image;
		imgs['calendar_on'].src = '/img/m_calendar.gif';
		imgs['calendar_off'] = new Image;
		imgs['calendar_off'].src = '/img/m_calendar.png';
		imgs['contact_on'] = new Image;
		imgs['contact_on'].src = '/img/m_register.gif';
		imgs['contact_off'] = new Image;
		imgs['contact_off'].src = '/img/m_register.png';

		arrow_r = new Image; arrow_r.src = '/img/arrow_r.gif';
		arrow_b = new Image; arrow_b.src = '/img/arrow_b.gif';

		function menuover(pic) { pic.src = imgs[pic.name+'_on'].src; }
		function menuout(pic) { pic.src = imgs[pic.name+'_off'].src; }
		function addbr() { document.write('<br/>'); }

		function arrowover(pic) { pic.src = arrow_r.src; }
		function arrowout(pic) { pic.src = arrow_b.src; }

		function changecolor(color) { document.getElementById('ocolor').style.color = color; }

