//
// This should cause the images to be preloaded.
//

extraImages=new Array()
extraImages[0] = "images/photos/solstice09p01.jpg"
extraImages[1] = "images/photos/solstice09p02.jpg"
extraImages[2] = "images/photos/solstice09p03.jpg"
extraImages[3] = "images/photos/solstice09p04.jpg"

//
// This function replaces the image and its title.
//

function showPic (whichpic) { 
	if (document.getElementById) { 
		document.getElementById('wntsolshw').src = whichpic.href; 
		if (whichpic.title) { 
			document.getElementById('wntsol').childNodes[0].nodeValue = whichpic.title; 
		} else { 
			document.getElementById('wntsol').childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue; 
		} 
		return false; 
	} else { 
		return true; 
	} 
}

//
// This is some optional extra initialization.
//

 
function extraInit () {
}
