//rollovers
var iName=""; 
default1 = new Image(); default1.src = "images/nav-about.gif";
changed1 = new Image(); changed1.src = "images/nav-about-on.gif";
default2 = new Image(); default2.src = "images/nav-contact.gif";
changed2 = new Image(); changed2.src = "images/nav-contact-on.gif";
default3 = new Image(); default3.src = "images/nav-employment.gif";
changed3 = new Image(); changed3.src = "images/nav-employment-on.gif";
default4 = new Image(); default4.src = "images/nav-locations.gif";
changed4 = new Image(); changed4.src = "images/nav-locations-on.gif";

	
function Ichange(p) {
    var pSrc=eval(p+ ".src");
    document[iName].src = pSrc;
}

//Writes the navigation to the page based on variable at the top of each page.
function printNav() { 
	if (section == "about" ) {
		document.write('<a href="about-us.html"><img src="images/nav-about-on.gif" width="134" height="37" alt="About Us" border="0"></a>');
	} 
	else {
		document.write('<a href="about-us.html" onMouseOver="iName=\'image1\'; Ichange(\'changed1\')" onMouseOut="Ichange(\'default1\')"><img src="images/nav-about.gif" width="134" height="37" alt="About Us" border="0" name="image1"></a>');
	}
	if (section == "contact" ) {
		document.write('<a href="contact-us.html"><img src="images/nav-contact-on.gif" width="128" height="37" alt="Contact Us" border="0"></a>');
	} 
	else {
		document.write('<a href="contact-us.html" onMouseOver="iName=\'image2\'; Ichange(\'changed2\')" onMouseOut="Ichange(\'default2\')"><img src="images/nav-contact.gif" width="128" height="37" alt="Contact Us" border="0" name="image2"></a>');
	}
	if (section == "employment" ) {
		document.write('<a href="employment.html"><img src="images/nav-employment-on.gif" width="129" height="37" alt="Employment" border="0"></a>');
	} 
	else {
		document.write('<a href="employment.html" onMouseOver="iName=\'image3\'; Ichange(\'changed3\')" onMouseOut="Ichange(\'default3\')"><img src="images/nav-employment.gif" width="129" height="37" alt="Employment" border="0" name="image3"></a>');
	}
	if (section == "locations" ) {
		document.write('<a href="locations.html"><img src="images/nav-locations-on.gif" width="133" height="37" alt="Locations" border="0"></a>');
	} 
	else {
		document.write('<a href="locations.html" onMouseOver="iName=\'image4\'; Ichange(\'changed4\')" onMouseOut="Ichange(\'default4\')"><img src="images/nav-locations.gif" width="133" height="37" alt="Locations" border="0" name="image4"></a>');	
	}
}

//writes the footer to the bottom of the page
function printFooter() { 
	document.write('<tr><td valign="top" align="left" class="footer" width="200"><br><nobr>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&copy;Copyright 2005 BRCS &nbsp;|&nbsp; <a href="http://www.brcs-inc.net/outside/new_page.html">Members</a></nobr></td><td valign="top" align="right"><a href="http://www.csa-dc.org/" target="_new"><img src="images/CSA.gif" width="62" height="47" alt="Contract Services Association of America" border="0"></a><a href="http://www.gsaelibrary.gsa.gov/ElibMain/ContractorInfo?contractNumber=GS-06F-0013R&contractorName=BROOKS+RANGE+CONTRACT+SERVICES&executeQuery=YES" target="_new"><img src="images/GSA.gif" width="129" height="47" alt="GSA Contract Number GS-06F-0013R" border="0"></a><a href="https://www.gsaadvantage.gov/advgsa/advantage/main/elib.do?pg=home&src=elib" target="_new"><img src="images/GSAAdvantage.gif" width="110" height="47" alt="GSA Advantage!" border="0"></a><a href="http://www.fairbankschamber.org/" target="_new"><img src="images/COC.gif" width="129" height="47" alt="Greater Fairbanks Chamber of Commerce" border="0"></a></td></tr><tr><td valign="top" align="left" colspan="2"><img src="images/spacer.gif" width="773" height="1" border="0"></td></tr>');
}