/*   
	MENU FOR THE ALL PAGES IN THE HTML DIRECTORY
*/

function menu() {

	homea = new Image(); homea.src = 'images/pkch-nav-home-on.gif'; homen = new Image(); homen.src = 'images/pkch-nav-home-off.gif';
	rulesa = new Image(); rulesa.src = 'images/pkch-nav-rules-on.gif'; rulesn = new Image(); rulesn.src = 'images/pkch-nav-rules-off.gif';
	registrationa = new Image(); registrationa.src = 'images/pkch-nav-registration-on.gif'; registrationn = new Image(); registrationn.src = 'images/pkch-nav-registration-off.gif';
	schedulea = new Image(); schedulea.src = 'images/pkch-nav-schedule-on.gif'; schedulen = new Image(); schedulen.src = 'images/pkch-nav-schedule-off.gif';
	downloadsa = new Image(); downloadsa.src = 'images/pkch-nav-downloads-on.gif'; downloadsn = new Image(); downloadsn.src = 'images/pkch-nav-downloads-off.gif';


document.write("<a href='index.html' onMouseOver = 'home.src=homea.src' onMouseOut = 'home.src=homen.src'><img src='images/pkch-nav-home-off.gif' width=150 height=30 border=0 name='home'>");
document.write("<a href='rules.html' onMouseOver = 'rules.src=rulesa.src' onMouseOut = 'rules.src=rulesn.src'><img src='images/pkch-nav-rules-off.gif' width=150 height=30 border=0 name='rules'></a>");
document.write("<a href='registration.html' onMouseOver = 'registration.src=registrationa.src' onMouseOut = 'registration.src=registrationn.src'><img src='images/pkch-nav-registration-off.gif' width=220 height=30 border=0 name='registration'>");
document.write("<a href='station-leaders.html' onMouseOver = 'schedule.src=schedulea.src' onMouseOut = 'schedule.src=schedulen.src'><img src='images/pkch-nav-schedule-off.gif' width=250 height=30 border=0 name='schedule'></a>");
document.write("<a href='downloads.html' onMouseOver = 'downloads.src=downloadsa.src' onMouseOut = 'downloads.src=downloadsn.src'><img src='images/pkch-nav-downloads-off.gif' width=210 height=30 border=0 name='downloads'></a>");

}
