function setup_nav () {
	$$('#nav li img').each(function(item) {
		item.onmouseover = function () {
			this.src = this.src.replace('off','hover');
		};
		item.onmouseout = function () {
			this.src = this.src.replace('hover','off');
		};
	});
}

window.onload = setup_nav;