// JavaScript Document - Menu

function changeImg (name, url) {
	if (document.images[name]) {
		document.images[name].src = url;
	}
}

