// JavaScript Document


function hilite(menuID){
	document.getElementById(menuID).style.backgroundImage = 'url(images/gradient-orange.gif)';
	document.getElementById(menuID).style.backgroundRepeat = 'repeat-x';
	document.getElementById(menuID).style.cursor = 'pointer';
}


function restore(menuID){
	document.getElementById(menuID).style.backgroundImage='none';
}

function footer(){
	document.write('<div id="footer">');
	document.write('&copy; 2011 A+ Web Design');
	document.write('</div>');
}

function openRoster() {
	window.open('http://www.arbitersports.com','roster','width=1025,height=600,resizable=1,menubar=1,toolbar=1,scrollbars=1,resizeable=1'); 
}
function openUniforms() {
	window.open('pdfs/ihsa_uniform_code.pdf','uniforms','width=1025,height=600,resizable=1,menubar=1,toolbar=1,scrollbars=1,resizeable=1'); 
}

function openClothing() {
	window.open('pdfs/Clothing-price.pdf','roster','width=1025,height=600,resizable=1,menubar=1,toolbar=1'); 
}

function renderMenu() {

document.write('<div id="menu">');
document.write('<ul>');
document.write('<li id="home" onmouseover="hilite(&#39;home&#39;)" onmouseout="restore(&#39;home&#39;)" onclick=location.href="index.html">HOME</li>\r\n');
document.write('<li id="about" onmouseover="hilite(&#39;about&#39;)" onmouseout="restore(&#39;about&#39;)" onclick=location.href="aboutus.html">ABOUT US</li>\r\n');
document.write('<li id="contact" onmouseover="hilite(&#39;contact&#39;)" onmouseout="restore(&#39;contact&#39;)" onclick=location.href="contact.html">CONTACT US</li>\r\n');
document.write('<li id="calendar" onmouseover="hilite(&#39;calendar&#39;)" onmouseout="restore(&#39;calendar&#39;)" onclick=location.href="calendar.html">CALENDAR OF EVENTS</li>\r\n');
document.write('<li id="photo" onmouseover="hilite(&#39;photo&#39;)" onmouseout="restore(&#39;photo&#39;)" onclick=location.href="gallery.html">PHOTO GALLERY</li>\r\n');
document.write('<li id="roster" onmouseover="hilite(&#39;roster&#39;)" onmouseout="restore(&#39;roster&#39;)" onclick="openRoster()">ROSTER AVAILABILITY</li>\r\n');
document.write('<li id="message" onmouseover="hilite(&#39;message&#39;)" onmouseout="restore(&#39;message&#39;)" onclick=location.href="message.php">MESSAGE BOARD</li>\r\n');
document.write('<li id="announcem" onmouseover="hilite(&#39;announcem&#39;)" onmouseout="restore(&#39;announcem&#39;)" onclick=location.href="announce.html">ANNOUNCEMENTS</li>\r\n');
document.write('<li id="minutes" onmouseover="hilite(&#39;minutes&#39;)" onmouseout="restore(&#39;minutes&#39;)" onclick=location.href="minutes.html">MINUTES</li>\r\n');
document.write('<li id="links" onmouseover="hilite(&#39;links&#39;)" onmouseout="restore(&#39;links&#39;)" onclick=location.href="links.html">RELATED LINKS</li>\r\n');
document.write('<li id="cloth" onmouseover="hilite(&#39;cloth&#39;)" onmouseout="restore(&#39;cloth&#39;)" onclick=window.open(&#39;pdfs/Clothing-price.pdf&#39;)>SAOA CLOTHING</li>\r\n'); 
document.write('<li id="hmembers" onmouseover="hilite(&#39;hmembers&#39;)" onmouseout="restore(&#39;hmembers&#39;)" onclick=location.href="honorary_members.html">HONORARY MEMBERS</li>\r\n');
document.write('<li id="uniforms" onmouseover="hilite(&#39;uniforms&#39;)" onmouseout="restore(&#39;uniforms&#39;)" onclick="openUniforms()">IHSA UNIFORM POLICY</li>\r\n');
document.write('</ul>\r\n');
document.write('</div>\r\n');
}
