//Nathan Ross (21 Oct 2002) edited for Publicom, Inc (03.24.04)
//This code displays a picture on the page based on the time.
	//picture array
	picList = new Array();
	
	picList[0] = "<IMG HEIGHT=143 WIDTH=551 SRC=media/mountainhead.gif>";
	picList[1] = "<IMG HEIGHT=143 WIDTH=551 SRC=media/sydneyhead.gif>";
        
		
	
	
	
	//randomization
	var now = new Date();
	var secs = now.getSeconds();
	var raw_random_number = Math.random(secs);
	var random_number = Math.round(raw_random_number * (picList.length));

	if (random_number == picList.length){random_number = 0}
	
	
	//set pic
	var pic = picList[random_number];