<!-- Hide from old browsers
	if (document.images)  {    
	
	button_top_game_off = new Image(225,22);
	button_top_game_off.src = "images/button_top_game_off.gif";
	button_top_game_on = new Image(225,22);
	button_top_game_on.src = "images/button_top_game_on.gif";
	
	button_top_dove_off = new Image(64,22);
	button_top_dove_off.src = "images/button_top_dove_off.gif";
	button_top_dove_on = new Image(64,22);
	button_top_dove_on.src = "images/button_top_dove_on.gif";
	
	button_top_quail_off = new Image(68,22);
	button_top_quail_off.src = "images/button_top_quail_off.gif";
	button_top_quail_on = new Image(68,22);
	button_top_quail_on.src = "images/button_top_quail_on.gif";
	
	button_top_fowl_off = new Image(119,22);
	button_top_fowl_off.src = "images/button_top_fowl_off.gif";
	button_top_fowl_on = new Image(119,22);
	button_top_fowl_on.src = "images/button_top_fowl_on.gif";
	
	button_top_fishing_off = new Image(253,22);
	button_top_fishing_off.src = "images/button_top_fishing_off.gif";
	button_top_fishing_on = new Image(253,22);
	button_top_fishing_on.src = "images/button_top_fishing_on.gif";
	
	button_deer_off = new Image(165,22);
	button_deer_off.src = "images/button_deer_off.gif";
	button_deer_on = new Image(165,22);
	button_deer_on.src = "images/button_deer_on.gif";
	
	button_fowl_off = new Image(165,22);
	button_fowl_off.src = "images/button_fowl_off.gif";
	button_fowl_on = new Image(165,22);
	button_fowl_on.src = "images/button_fowl_on.gif";
	
	button_hogs_off = new Image(165,34);
	button_hogs_off.src = "images/button_hogs_off.gif";
	button_hogs_on = new Image(165,34);
	button_hogs_on.src = "images/button_hogs_on.gif";
	
	button_upper_off = new Image(165,22);
	button_upper_off.src = "images/button_upper_off.gif";
	button_upper_on = new Image(165,22);
	button_upper_on.src = "images/button_upper_on.gif";
	
	button_tournaments_off = new Image(165,34);
	button_tournaments_off.src = "images/button_tournaments_off.gif";
	button_tournaments_on = new Image(165,34);
	button_tournaments_on.src = "images/button_tournaments_on.gif";
	
	button_deer_2_off = new Image(165,22);
	button_deer_2_off.src = "images/button_deer_2_off.gif";
	button_deer_2_on = new Image(165,22);
	button_deer_2_on.src = "images/button_deer_2_on.gif";
	
	button_fowl_2_off = new Image(165,22);
	button_fowl_2_off.src = "images/button_fowl_2_off.gif";
	button_fowl_2_on = new Image(165,22);
	button_fowl_2_on.src = "images/button_fowl_2_on.gif";
	
	button_hogs_2_off = new Image(165,22);
	button_hogs_2_off.src = "images/button_hogs_2_off.gif";
	button_hogs_2_on = new Image(165,22);
	button_hogs_2_on.src = "images/button_hogs_2_on.gif";
	
	button_fishing_2_off = new Image(165,34);
	button_fishing_2_off.src = "images/button_fishing_2_off.gif";
	button_fishing_2_on = new Image(165,34);
	button_fishing_2_on.src = "images/button_fishing_2_on.gif";
	
	button_sponsors_off = new Image(165,26);
	button_sponsors_off.src = "images/button_sponsors_off.gif";
	button_sponsors_on = new Image(165,26);
	button_sponsors_on.src = "images/button_sponsors_on.gif";
	
	button_links_off = new Image(165,26);
	button_links_off.src = "images/button_links_off.gif";
	button_links_on = new Image(165,26);
	button_links_on.src = "images/button_links_on.gif";
	
	button_links_off = new Image(165,26);
	button_links_off.src = "images/button_links_off.gif";
	button_links_on = new Image(165,26);
	button_links_on.src = "images/button_links_on.gif";
	
	button_contact_off = new Image(165,26);
	button_contact_off.src = "images/button_contact_off.gif";
	button_contact_on = new Image(165,26);
	button_contact_on.src = "images/button_contact_on.gif";
	
	button_maps_2_off = new Image(165,26);
	button_maps_2_off.src = "images/button_maps_2_off.gif";
	button_maps_2_on = new Image(165,26);
	button_maps_2_on.src = "images/button_maps_2_on.gif";
	
	button_home_off = new Image(165,26);
	button_home_off.src = "images/button_home_off.gif";
	button_home_on = new Image(165,26);
	button_home_on.src = "images/button_home_on.gif";
	
	}
									
	function rollOn(name) {
			var imagename = eval("document." + name)       
	         if (document.images) 
			 {
	                imagename.src = eval('button_' + name + '_on.src');
	        }
	}
									
	function rollOff(name) 
			{
				var imagename = eval("document." + name)	        
	         	if (document.images) {
	            imagename.src = eval('button_' + name + "_off.src");
	         }
	}
			
	function showdate()
		{
	
			m = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
			today = new Date();
			day = today.getDate();
			year = today.getYear();
				if (year < 2000)year = year + 1900;
			end = "th";
				if (day==1 || day==21 || day==31) end="st";
				if (day==2 || day==22) end="nd";
				if (day==3 || day==23) end="rd";
			document.write(m[today.getMonth()]+" ");
			document.write(day+", " + year);
		}					
	// -->