<!--//

window.onload = function() {

	var div1bj = document.getElementById("change01");
	div1bj.onmouseover = function() {
		if (this.className.indexOf("on_") == -1)
		{
			this.className = "on_" + this.className;
		}
	}
	div1bj.onmouseout = function() {
		this.className = this.className.replace(/on_/, "");
	}

	var div2bj = document.getElementById("change02");
	div2bj.onmouseover = function() {
		if (this.className.indexOf("on_") == -1)
		{
			this.className = "on_" + this.className;
		}
	}
	div2bj.onmouseout = function() {
		this.className = this.className.replace(/on_/, "");
	}

	var div3bj = document.getElementById("change03");
	div3bj.onmouseover = function() {
		if (this.className.indexOf("on_") == -1)
		{
			this.className = "on_" + this.className;
		}
	}
	div3bj.onmouseout = function() {
		this.className = this.className.replace(/on_/, "");
	}

	var div4bj = document.getElementById("change04");
	div4bj.onmouseover = function() {
		if (this.className.indexOf("on_") == -1)
		{
			this.className = "on_" + this.className;
		}
	}
	div4bj.onmouseout = function() {
		this.className = this.className.replace(/on_/, "");
	}

	var div5bj = document.getElementById("change05");
	div5bj.onmouseover = function() {
		if (this.className.indexOf("on_") == -1)
		{
			this.className = "on_" + this.className;
		}
	}
	div5bj.onmouseout = function() {
		this.className = this.className.replace(/on_/, "");
	}

	var div6bj = document.getElementById("change06");
	div6bj.onmouseover = function() {
		if (this.className.indexOf("on_") == -1)
		{
			this.className = "on_" + this.className;
		}
	}
	div6bj.onmouseout = function() {
		this.className = this.className.replace(/on_/, "");
	}

	var div7bj = document.getElementById("change07");
	div7bj.onmouseover = function() {
		if (this.className.indexOf("on_") == -1)
		{
			this.className = "on_" + this.className;
		}
	}
	div7bj.onmouseout = function() {
		this.className = this.className.replace(/on_/, "");
	}



}

//-->