/* Add the function <script>	buttonOn();</script>to the bottom of each page */function buttonOn(){url=location.toString(); //Turns URL into a string	if(url.search("about") != -1){		document.about.src="../sharedImages/YK_Seniors_over.gif";	}	else if(url.search("activities") != -1){		document.activities.src="../sharedImages/Activities_over.gif";	}	else if(url.search("calendar") != -1){		document.calendar.src="../sharedImages/Calendar_over.gif";	}	else if(url.search("contact") != -1){		document.contact.src="../sharedImages/Contact_Us_over.gif";	}	else if(url.search("information") != -1){		document.information.src="../sharedImages/Information_over.gif";	}	else if(url.search("photoGallery") != -1){		document.photoGallery.src="../sharedImages/Photo_Gallery_over.gif";	}}