
/*********************************************************************
File Name:	mapover.js
File Info:	Javascript
Author:		WEB DESIGN LAB
		http://www.webdlab.com/
Last Modified:	10.01.2009
*********************************************************************/

/*--------------------------------------------------------------------
Script
--------------------------------------------------------------------*/
function mapover() {
	document.getElementById('voice01').onmouseover = function() {
		document.getElementById('cmap').src = mapimg[1];
	};
	document.getElementById('voice01').onmouseout = function() {
		document.getElementById('cmap').src = mapimg[0];
	};
	document.getElementById('voice01').onclick = function() {
		document.getElementById('cmap').src = mapimg[0];
	};

	document.getElementById('voice02').onmouseover = function() {
		document.getElementById('cmap').src = mapimg[2];
	};
	document.getElementById('voice02').onmouseout = function() {
		document.getElementById('cmap').src = mapimg[0];
	};
	document.getElementById('voice02').onclick = function() {
		document.getElementById('cmap').src = mapimg[0];
	};
}

if(window.addEventListener) {
	window.addEventListener("load",mapover,false);
} else if(window.attachEvent) {
	window.attachEvent("onload",mapover);
}

