var initialized = false;

function newWindow(url) {
 window.open (url, "DaveAcker");
}

function init() {
	var navigationContainer = document.getElementById('navigation');
	var navImages = navigationContainer.getElementsByTagName('img');
	
	for (var i=0; i < navImages.length; i++) {
		navImages[i].onmouseover = rollNav;
		navImages[i].onmouseout = restoreNav;
	}
}

function rollNav() {
	if (this.src.indexOf("_click") == -1 && this.src.indexOf("clearspa") == -1) {
		this.src = this.src.replace(".gif", "_roll.gif");
	}
}

function restoreNav() {
	if (this.src.indexOf("_click") == -1 && this.src.indexOf("clearspa") == -1) {
		this.src = this.src.replace("_roll.gif", ".gif");
	}
}

window.onload = init;
