// JavaScript Document

function menu(hmenu)
 {
	if (document.getElementById)
	 {
		var rows = document.getElementById('inner').rows;
		var cols = rows[3].cells;					
		document.getElementById('hide').style.backgroundColor= "#AC3311"; // This is used if images are disabled.		
	 	switch (hmenu)
	     {
		 	case 1:				 		     
	         cols[0].innerHTML="<div id=\"one\" onmouseover=\"highLightMenu('menu1');\" onmouseout=\"highLightMenu('menu1','true');\"><a href=\"about/history.html\">History</a>&nbsp;|&nbsp;<a href=\"about/officers.html\">Officers</a>&nbsp;|&nbsp;<a href=\"about/aa.html\">Academic Advisors</a>&nbsp;|&nbsp;<a href=\"about/committees.html\">Committees</a>&nbsp;|&nbsp;<a href=\"about/links.html\">Links</a></div>";
			 break;
			case 2: 			 		     
	         cols[0].innerHTML="<div id=\"two\" onmouseover=\"highLightMenu('menu2');\" onmouseout=\"highLightMenu('menu2','true');\"><a href=\"membership/info.html\">General Information</a>&nbsp;|&nbsp;<a href=\"membership/constitution.html\">Constitution</a>&nbsp;|&nbsp;<a href=\"membership/form.html\">Membership Form</a></div>";		 
			 break;
			case 3: 			 
    	     cols[0].innerHTML="<div id=\"three\" onmouseover=\"highLightMenu('menu3');\" onmouseout=\"highLightMenu('menu3','true');\"><a href=\"events/fall.html\">Fall Semesters</a>&nbsp;|&nbsp;<a href=\"events/spring.html\">Spring Semester</a>&nbsp;|&nbsp;<a href=\"events/previous.html\">Previous Semesters</a></div>";
		     break;
			case 4: 			  
	         cols[0].innerHTML="<div id=\"four\" onmouseover=\"highLightMenu('menu4');\" onmouseout=\"highLightMenu('menu4','true');\"><a href=\"gallery/present.html\">Present</a>&nbsp;|&nbsp;<a href=\"gallery/past.html\">Past</a></div>";			 
			 break;
	     }
	 }
 } // End menu
 
function highLightMenu(menuItem, hoff)
 {     
	if (document.getElementById) 
	 {
		if (hoff)  		 
		  document.getElementById(menuItem).style.color="#FFFFFF";		 
		else 
		 document.getElementById(menuItem).style.color="#FAFF32"; 
	 }
 } // End highLightMenu