	<!--

	/*  This script generates the side navigation bar that is 150 px wide and a spacer column to the right of it 
		that is 40 px wide.  It goes on all the mt. diablo web pages.  This script needs the rollover file called
		bulletChange.js
	*/

	document.writeln("<td valign='top' bgcolor='#FFCC33' class='pagenav' width='150'>");
	document.writeln("<img src='Images/spacer.gif' width='150' height='10' border='0'><br>");

	//  REGION NAVIGATION LINKS
	var navNumber = new Array("Home",
							"About",
							"Calendar",
							"Programs",
//							"News Updates",  added 11-2004, deleted 8-2006
//							"Adopt",
							"Membership",
							"Executive",
//							"Newsletter",
							"Scholarship",
//							"Career", deleted 8-2006
							"Job Posting",
							"National",
							"Region");

	var linkList = new Array ("index.htm",
						"aboutus.html",
						"calendar.html", 
						"programs.html",
//						"news.html",   added 11-2004, deleted 8-2006
//						"adoptafamily.html",
						"membership.html",
						"board.html",
//						"newsletter.html",
						"scholarship.html",
//						"careerguide.html", deleted 8-2006
						"jobs.html",
						"http://societyofwomenengineers.swe.org/",
						"http://www.swe-goldenwest.org");

	var titleList = new Array ("Home",
						"About Us",
						"Calendar of Events",
						"Programs",
//						"News Updates",  added 11-2004, deleted 8-2006
//						"Adopt-A-Family",
						"Membership",
						"Executive Council",
//						"Newsletter",
						"Scholarship",
//						"Career Guidance",  deleted 8-2006
						"Job Posting",
						"National SWE",
						"SWE Region A");

	for (i=0; i<navNumber.length; i++) {
		document.writeln("<img src='Images/bulletGreen.gif' name='bullet"     +navNumber[i]+    "' align='center' width='30' height='20'>");
		document.writeln("<a href='"      +linkList[i]+      "' ");
		document.writeln("onMouseover='bulletChange(\"bullet"      +navNumber[i]+       "\",\"bulletOn\");' ");
		document.writeln("onMouseout='bulletChange(\"bullet"      +navNumber[i]+       "\",\"bulletOff\");'> "   +titleList[i]+    "</a><br>");
	}
	
	
	document.writeln("<img src='Images/spacer.gif' width='150' height='20' border='0'><br><div style='margin:0 0 0 11px; padding:2px 0 2px 5px; background-color:#009900; color:#ffffff; font-weight:bold;'> Follow us</div>");	
	document.writeln("<a href='http://www.facebook.com/home.php#/group.php?gid=111068286061'><img src='Images/iconFB.gif' width='30' height='30' alt='Find Us On Facebook!' border='none' style='margin-top:5px; margin-left:10px' /></a>");
	document.writeln("<a href='http://www.linkedin.com/groups?home=&gid=2829332&trk=anet_ug_hm'><img src='Images/iconLI.gif' width='30' height='30' alt='Join us on LinkedIn!' border='none' style='margin-top:5px; margin-left:1px' /></a>");	


	document.writeln("<img src='Images/spacer.gif' width='150' height='20' border='0'><br><div style='margin:0 0 0 11px; padding:2px 0 2px 5px; background-color:#009900; color:#ffffff; font-weight:bold;'> <a href='http://www.surveymonkey.com/s/LRW5M2W'><span style='color:#FFFFFF;'>Give us your feedback!</span></a></div></td>");



	/* *********   THIS SCRIPT SIZES THE PAGE TO FILL OUT THE BROWSER WINDOW FROM TOP TO BOTTOM   **********  */
	var headerH=120; footerH=90;
	if (document.layers) {
		winH = window.innerHeight;
	} else if (document.all) {
		winH = document.body.offsetHeight-4;				
	} else {
		winH = 380 + headerH  + footerH;
	}
	spacerH = winH - headerH - footerH;

	document.write("<td bgcolor='#FFFFFF' valign='top'><img src='Images/spacer.gif' width='40' height=" + spacerH + " border='0'></td>");
	

	
	
	//-->