<!-- 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_dove_off = new Image(64,22);
		button_dove_off.src = "images/button_top_dove_off.gif";
		button_dove_on = new Image(64,22);
		button_dove_on.src = "images/button_top_dove_on.gif";
		
		button_quail_off = new Image(68,22);
		button_quail_off.src = "images/button_top_quail_off.gif";
		button_quail_on = new Image(68,22);
		button_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_fishing_off = new Image(165,22);
		button_fishing_off.src = "images/button_upper_off.gif";
		button_fishing_on = new Image(165,22);
		button_fishing_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_prices_off = new Image(165,22);
		button_deer_prices_off.src = "images/button_deer_2_off.gif";
		button_deer_prices_on = new Image(165,22);
		button_deer_prices_on.src = "images/button_deer_2_on.gif";
		
		button_fowl_prices_off = new Image(165,22);
		button_fowl_prices_off.src = "images/button_fowl_2_off.gif";
		button_fowl_prices_on = new Image(165,22);
		button_fowl_prices_on.src = "images/button_fowl_2_on.gif";
		
		button_hog_prices_off = new Image(165,22);
		button_hog_prices_off.src = "images/button_hogs_2_off.gif";
		button_hog_prices_on = new Image(165,22);
		button_hog_prices_on.src = "images/button_hogs_2_on.gif";
		
		button_fishing_prices_off = new Image(165,34);
		button_fishing_prices_off.src = "images/button_fishing_2_off.gif";
		button_fishing_prices_on = new Image(165,34);
		button_fishing_prices_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_related_links_off = new Image(165,26);
		button_related_links_off.src = "images/button_links_off.gif";
		button_related_links_on = new Image(165,26);
		button_related_links_on.src = "images/button_links_on.gif";
		
		button_related_links_off = new Image(165,26);
		button_related_links_off.src = "images/button_links_off.gif";
		button_related_links_on = new Image(165,26);
		button_related_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_off = new Image(165,26);
		button_maps_off.src = "images/button_maps_off.gif";
		button_maps_on = new Image(165,26);
		button_maps_on.src = "images/button_maps_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";
		
		}
									
			// Turns Images On;
		var previousImage;					
		function rollOn(DOMID) 
			{
				
				var imagename = DOMID.name;
				
				previousImage = DOMID.src; 
		         if (document.images) 
				 	{
		                DOMID.src = eval('button_' + DOMID.name + '_on.src');
		        	}
			}
			
		// Turns Images Off;		
		function rollOff(DOMID) 
				{
					DOMID.src = previousImage;
		         }
		
		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);
			}
			
		// -->