function links(istr,tartan) {	document.write('<div id="fixed" class="logo">');	document.write('<img src="images/LogoImg.gif" width="120" height="140" />');	add_button(istr,"Home","Home");	add_button(istr,"Classes","Classes");	add_button(istr,"Events","Events");	add_button(istr,"Photos","Photos");	add_button(istr,"GC","Newsletter");	add_button(istr,"Links","Links");	add_button(istr,"FunStuff","Forms, Lists,<br />Fun Stuff");	add_button(istr,"AboutUs","About Us");	add_button(istr,"ContactUs","Contact Us");	document.write('<span class="note">');	document.write('<a href="#" onclick="linktest()" class="linknote">Note: You can click on any text which is this color.</a>');	document.write('</span>');	document.write('</div>');}function add_button(istr,str,ostr) {	if (str != istr) {		document.write('<span class="links">');	} else {		document.write('<span class="links2">');	}		document.write('<a href="'+str+'.html" noborder>');		document.write(ostr);		document.write('</a>');		document.write('</span>');}function linktest()  {	alert("This color represents a link.");}
