// JavaScript Document


function initArray() 
{
 
	this.length = initArray.arguments.length;
  	
	for (var i = 0; i < this.length; i++)
	{
  		this[i] = initArray.arguments[i];
  	}
}


function LoadSplashImage()
{
	
		
	var currentdate = new Date();
		
	images = new initArray( 
			"splashimages/arriving_at_camp.jpg",
			"splashimages/autumn_leaves.jpg",
			"splashimages/autumn_leaves2.jpg",
			"splashimages/robin_eggs.jpg",
			"splashimages/camper_in_pool.jpg",
			"splashimages/campers_in_alum_creek.jpg",
			"splashimages/cardinal_in_winter.jpg",
			"splashimages/cattails_winter.jpg",
			"splashimages/davidson_cabin.jpg",
			"splashimages/flag.jpg",
			"splashimages/mountain_laurel.jpg",
			"splashimages/heartland_archery.jpg",
			"splashimages/heartland_fall.jpg",
			"splashimages/heartland_front_sign.jpg",
			"splashimages/heartland_ohio_living_history.jpg",
			"splashimages/heartland_wetland.jpg",
			"splashimages/hickory_lodge_heartland.jpg",
			"splashimages/ice.jpg",
			"splashimages/ice_on_trees.jpg",
			"splashimages/maple_leaves_in_water.jpg",
			"splashimages/monarch_butterfly_new_england_aster.jpg",
			"splashimages/pinecones_in_winter.jpg",
			"splashimages/eastern_redbud.jpg",
			"splashimages/rabbit.jpg",
			"splashimages/honeysuckle.jpg",
			"splashimages/skunk_cabbage.jpg",
			"splashimages/snow_covered_branches.jpg",
			"splashimages/snow_on_branches.jpg",
			"splashimages/trillium.jpg",
			"splashimages/water_trickle.jpg",
			"splashimages/woods.jpg",
			"splashimages/sunflower.jpg",
			"splashimages/sunflower2.jpg"); 
	
	images_alt = new initArray( 
			"Campers arriving_at camp",
			"Autumn Leaves",
			"Autumn Leaves",
			"Robin Eggs",
			"Camper in pool",
			"Campers in Alum Creek",
			"Cardinal in winter",
			"Cattails in winter",
			"Davidson Cabin",
			"American flag",
			"Mountain Laurel",
			"Archery",
			"Heartland in the fall",
			"Heartland welcomes you!",
			"Ohio Living History",
			"Wetland",
			"Hickory Lodge",
			"Ice formations",
			"Ice on trees",
			"Maples leaves",
			"Monarch butterfly on a New England Aster bush",
			"Pinecones in winter",
			"Eastern Redbud flowers",
			"Rabbit",
			"Honeysuckle",
			"Skunk cabbage",
			"Snow covered branches",
			"Snow covered branches",
			"Trillium",
			"Trickling water",
			"The great outdoors",
			"Sunflower",
			"Sunflower");
	
	
	var index = currentdate.getSeconds() % images.length;


	var splashimage = images[index];
	var splashalt = images_alt[index];
	
	document.write( '<img src=\"'+splashimage+'\" alt=\"'+splashalt+'\">');
	
	
}




