function smartRollover() {
	if(document.getElementsByTagName && document.getElementById("zaikoimg")) {
		var images = document.getElementById("zaikoimg");

		var areas = document.getElementById("lj1000");
		if(images.getAttribute("src").match("zaiko.jpg"))
		{
			areas.onmouseover = function() {
				var images = document.getElementById("zaikoimg")
				images.setAttribute("src", images.getAttribute("src").replace("zaiko.jpg", "zaiko2.jpg"));
			}
			areas.onmouseout = function() {
				var images = document.getElementById("zaikoimg")
				images.setAttribute("src", images.getAttribute("src").replace("zaiko2.jpg", "zaiko.jpg"));
			}
		}
		var areas = document.getElementById("crlar");
		if(images.getAttribute("src").match("zaiko.jpg"))
		{
			areas.onmouseover = function() {
				var images = document.getElementById("zaikoimg")
				images.setAttribute("src", images.getAttribute("src").replace("zaiko.jpg", "zaiko.jpg"));
			}
			areas.onmouseout = function() {
				var images = document.getElementById("zaikoimg")
				images.setAttribute("src", images.getAttribute("src").replace("zaiko.jpg", "zaiko.jpg"));
			}
		}









	}
}

if(window.addEventListener) {
	window.addEventListener("load", smartRollover, false);
}
else if(window.attachEvent) {
	window.attachEvent("onload", smartRollover);
}
