//function rotateimage()
//{
//		var image_dir = '/Websites/ndbg/templates/NDBG/images/'; // directory where images are located
//		
//		var image_array = new Array('main_image.jpg','main_image_2.jpg'); // images available for rotation (comma separated)
//		
//		var imgNum = Math.floor(Math.random()*image_array.length); // select a random image based on the number of images in 'image_array'
//		
//		document.getElementById('MainPic')style.background = 'url(' + image_dir + image_array[imgNum] + ')'; // apply randomly selected image to 'MainPic' <div> container
//
//}

Event.observe(window, 'load', // use prototype.js to find when the page loads (same as using <body onload="">

	function()
	{ 

		//Random Image loader code
		var image_dir = '/Websites/ndbg/templates/NDBG/images/'; // directory where images are located
		var image_array = new Array('main_image_3.jpg','main_image_4.jpg','main_image_5.jpg'); // images available for rotation (comma separated)
		var imgNum = Math.floor(Math.random()*image_array.length); // select a random image based on the number of images in 'image_array'
		$('MainPic').style.background = 'url(' + image_dir + image_array[imgNum] + ')'; // apply randomly selected image to 'MainPic' <div> container
		
	}

);