<!--
/*
Configure menu styles below
NOTE: To edit the link colors, go to the STYLE tags and edit the ssmItems colors
*/

browserName = navigator.appName;
browserVer  = parseInt(navigator.appVersion);
if (browserName == "Netscape" && browserVer >= 3) version = "n3";
else version = "msie";

if (version == "msie"){

YOffset=120; // no quotes!!
staticYOffset=20; // no quotes!!
XOffset=0; // no quotes!!
slideSpeed=10 // no quotes!!
waitTime=500; // no quotes!! this sets the time the menu stays out for after the mouse goes off it.

menuBGColor="";
menuIsStatic="yes";
menuWidth=200; // Must be a multiple of 10! no quotes!!
menuCols=1;

hdrFontFamily="Arial";
hdrFontSize="2";
hdrFontColor="mintcream";
hdrBGColor="steelblue";
hdrAlign="left";
hdrVAlign="center";
hdrHeight="20";

linkFontFamily="Arial";
linkFontSize="2";
linkBGColor="gainsboro";
linkOverBGColor="lightsteelblue";
linkTarget="_top";
linkAlign="center";
linkHeight="18";

barRowSpan="15"; // total number of headers and links.
barBGColor="";
barFontFamily="Arial";
barFontSize="2";
barFontColor="#ffffff";
barVAlign="center";
barWidth=80; // no quotes!!
barText='<img src="images/navmenu2.gif" border=0 />'; // <IMG> tag supported, Ex: '<img src="some.gif" border=0>'

// ssmItems[...]=[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header

addHdr('General')
	addItem('SMATE Homepage','index.html', '', '1');
	addItem('Faculty and Staff','faculty.html', '', '1');
	addItem('Program Advising','advising.html', '', '1');
	//addItem('Course Descriptions','courses.html', '', '1');

addHdr('Resources')
	addItem('Learning Resource Center','resources.html', '', '1');
	addItem('Library Catalog','http://waldo.smate.wwu.edu/InfoCentre/Library.do?library=WWUSMATE', '', '1');
	addItem('Events and Meetings','events.html', '', '1');

addHdr('WWU Links')
	addItem('WWU Homepage','http://www.wwu.edu','','1')
	addItem('Woodring College of Education','http://www.wce.wwu.edu', '', '1');
	addItem('College of Science & Technology','http://www.wwu.edu/depts/cst/', '', '1');
	addItem('Western Planetarium','http://www.ac.wwu.edu/~skywise', '', '1');

addHdr('Contact Info')
	addItem('Phone / FAX / E-Mail','contact.html', '', '1');
	addItem('Building Location','http://www.wwu.edu/about/map/interactive/mapzone3.shtml?highlight=sciencemathematicsandtechnologyeducation', '', '1', 'yes');
	//addItem('Campus Map (pdf)','http://www.wwu.edu/about/map/cmap.pdf', '_', '1');

buildMenu();
}
//-->