		 $(document).ready(function() {
		 
			$(".home, .showhome").mouseover(function(){
			$(".showhome").show();
			}).mouseout(function(){
			$(".dropdown").hide();
			});
			
			$(".about, .showabout").mouseover(function(){
			$(".showabout").show();
			}).mouseout(function(){
			$(".dropdown").hide();
			});
			
			$(".park, .showpark").mouseover(function(){
			$(".showpark").show();
			}).mouseout(function(){
			$(".dropdown").hide();
			});
		 
			$(".actprogs, .showactprogs").mouseover(function(){
			$(".showactprogs").show();
			}).mouseout(function(){
			$(".dropdown").hide();
			});
		 
			$(".leo, .showleo").mouseover(function(){
			$(".showleo").show();
			}).mouseout(function(){
			$(".dropdown").hide();
			});
		
			$(".otherlinks, .showotherlinks").mouseover(function(){
			$(".showotherlinks").show();
			}).mouseout(function(){
			$(".dropdown").hide();
			});
		 
		 $('#slideshow1').cycle({ 
			delay:  1500, 
			speed:  1000 
		});
		 
 		});
 		
// Function to create mail-to strings that are more difficult for spam-bots to harvest.
// Requires name to be passed as argument.

function getLnk (usrnm) {
	var lnkref =""
	var wbcor = "\u0040waynesburglionsclub";
	var wbext = "\u002Eorg"
	var lnkref = ("<a hre" + "f=ma" + "ilto:" + usrnm + wbcor + wbext + ">" + "email" + "<\/a>");
	return lnkref
	}

