// JavaScript Document

function popup(url,windowName,width,height) {
	settings="toolbar=no,location=no,directories=no,"+"status=no,menubar=no,scrollbars=no,"+"resizable=no,width="+width+",height="+height;
	window.open(url,windowName,settings); 
}

function closeWindow() {
	window.close();
}

function changeImage_old(newimage, quote) {
	var changediv = "splashpostcard";
	var pardiv = "winnersquote";
	var newBGimage = "url('images2006/winners2006/winner2006-" + newimage + ".jpg')";
	
	document.getElementById(changediv).style.backgroundImage = newBGimage;
	document.getElementById(pardiv).innerHTML = quote;
}

function changeImage(newimage, quote) {
	var changediv = "splashpostcard";
	var pardiv = "winnersquote";
	var newBGimage = "url('images2006/winners2006/winner2006-" + newimage + "-clean.jpg')";
	
	document.getElementById(changediv).style.backgroundImage = newBGimage;
	document.getElementById(changediv).style.height = "300px";
	// document.getElementById(pardiv).innerHTML = quote;
}

function startList() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("navmain");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
					this.style.zIndex = 500;
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}

window.onload=startList();