function initPage()
{
	var _submit = document.getElementById("search");
	if (_submit){
		_submit.onmouseover = function () {
			this.className += " search-btn-hover";
		}
		_submit.onmouseout = function (){
			this.className = this.className.replace(" search-btn-hover", "");
		}
	}
}
if (window.attachEvent && !window.opera){
	window.attachEvent("onload", initPage);
}
