function loadSideNav()
{
	var x = 0;
	var arrPages = new Array("theclub.html","thecourse.html","golf_institute/index.html","rates.html","ian_leggatt.html","clubhouse.html","restaurant.html","weddings.html","promotions.html","corporate.html","corporate_merchandise.html","corporate_packages.html","accomodation.html","employment.html","contact.html","map.html","photos.html");
	var arrImgs = new Array("theclub","thecourse","theinstitute","rates","ianleggatt","clubhouse","restaurant","weddings","promotions","corporate","merchandise","corporatepack","accomodation","employment","contact","map","photos");
	var strCurPage = ""+location;
	
	document.writeln('<div id="text1"><BR>');
	document.writeln('<a href="theclub.html" onMouseOver="act1(\'theclub\')" onMouseOut="inact1(\'theclub\')"><img src="buttons/thecluboff.jpg" name="theclub" width="170" height="22" border="0"></a><br>');
	document.writeln('<a href="thecourse.html" onMouseOver="act1(\'thecourse\')" onMouseOut="inact1(\'thecourse\')"><img src="buttons/thecourseoff.jpg" name="thecourse" width="170" height="22" border="0"></a><br>');
	document.writeln('<a href="golf_institute/index.html" onMouseOver="act1(\'theinstitute\')" onMouseOut="inact1(\'theinstitute\')"target="_blank"><img src="buttons/theinstituteoff.jpg" name="theinstitute" width="170" height="22" border="0"></a><br>');
	document.writeln('<a href="rates.html" onMouseOver="act1(\'rates\')" onMouseOut="inact1(\'rates\')"><img src="buttons/ratesoff.jpg" name="rates" width="170" height="22" border="0"></a><br>');
	
	document.writeln('<a href="clubhouse.html" onMouseOver="act1(\'clubhouse\')" onMouseOut="inact1(\'clubhouse\')"><img src="buttons/clubhouseoff.jpg" name="clubhouse" width="170" height="22" border="0"></a><br>');
	document.writeln('<a href="restaurant.html" onMouseOver="act1(\'restaurant\')" onMouseOut="inact1(\'restaurant\')"><img src="buttons/restaurantoff.jpg" name="restaurant" border="0"></a><br>');
	document.writeln('<a href="membership.html" onMouseOver="act1(\'memberships\')" onMouseOut="inact1(\'memberships\')"><img src="buttons/membershipsoff.jpg" name="memberships" border="0"></a><br>');
	document.writeln('<a href="http://en.clublink.ca/hostanevent/?section_id=11" onMouseOver="act1(\'weddings\')" onMouseOut="inact1(\'weddings\')"target="_blank"><img src="buttons/weddingsoff.jpg" name="weddings" border="0"></a><br>');
	document.writeln('<a href="promotions.html" onMouseOver="act1(\'promotions\')" onMouseOut="inact1(\'promotions\')"><img src="buttons/promotionsoff.jpg" name="promotions" border="0"></a><br>');
	document.writeln('<a href="http://en.clublink.ca/hostanevent/?section_id=10" onMouseOver="act1(\'corporate\')" onMouseOut="inact1(\'corporate\')""target="_blank"><img src="buttons/corporateoff.jpg" name="corporate" border="0"></a><br>');
	document.writeln('<a href="corporate_packages.html" onMouseOver="act1(\'corporatepack\')" onMouseOut="inact1(\'corporatepack\')"><img src="buttons/corporatepackoff.jpg" name="corporatepack" width="170" height="22" border="0"></a><br>');
		document.writeln('<a href="http://en.clublink.ca/hostanevent/?section_id=13&PARENT_ID=10" onMouseOver="act1(\'merchandise\')" onMouseOut="inact1(\'merchandise\')"target="_blank"><img src="buttons/merchandiseoff.jpg" name="merchandise" width="170" height="22" border="0"></a><br>');
	

	document.writeln('<a href="http://en.clublink.ca/about/?section_id=20&PARENT_ID=10" onMouseOver="act1(\'employment\')" onMouseOut="inact1(\'employment\')"target="_blank"><img src="buttons/employmentoff.jpg" name="employment" border="0"></a><br>');
	document.writeln('<a href="contact.html" onMouseOver="act1(\'contact\')" onMouseOut="inact1(\'contact\')"><img src="buttons/contactoff.jpg" name="contact" width="170" height="22" border="0"></a><br>');
	document.writeln('<a href="map.html" onMouseOver="act1(\'map\')" onMouseOut="inact1(\'map\')"><img src="buttons/mapoff.jpg" name="map" border="0"></a><br>');
	document.writeln('<a href="photos.html" onMouseOver="act1(\'photos\')" onMouseOut="inact1(\'photos\')"><img src="buttons/photosoff.jpg" name="photos" border="0"></a>');
	document.writeln('</div>');
	
	for(x=0;x<arrPages.length;x++)
	{
		if(strCurPage.indexOf(arrPages[x]) > 1)
		{
			strCurImg = ""+arrImgs[x];
			document.images[arrImgs[x]].src = "buttons/"+arrImgs[x]+"on.jpg";
			break;
		}
	}
}

loadSideNav();