/* Add the function <script language="JavaScript" src="my_javascript.js"></script> --- This goes in Head<script>	buttonOn();</script>to the bottom of each page */function buttonOn(){url=location.toString(); //Turns URL into a string	if(url.search("visit") != -1){		document.visit.src="../sharedImages/visit_over.gif";	}	else if(url.search("get_here") != -1){		document.gethere.src="../sharedImages/get_here_over.gif";	}	else if(url.search("business") != -1){		document.business.src="../sharedImages/business_over.gif";	}	else if(url.search("whats_new") != -1){		document.whatsnew.src="../sharedImages/whats_new_over.gif";	}	else if(url.search("community") != -1){		document.community.src="../sharedImages/community_over.gif";	}}