function initPage(){
	var path_btn = document.getElementsByTagName('a');
	for(var i = 0; i < path_btn.length; i++) {
		if(path_btn[i].className.indexOf('path-link') != -1) {
			var _p = path_btn[i].parentNode;
			_p.btn = path_btn[i];
			_p.onclick = function() {
				document.location.href = this.btn;
			}
			_p.onmouseover = function() { 
				if(this.className.indexOf('hover') == -1) this.className += ' hover ';
			}
			_p.onmouseout = function() { 
				this.className = this.className.replace('hover','');
			}
		}
	}
}
if (window.addEventListener)
	window.addEventListener("load", initPage, false);
else if (window.attachEvent)
	window.attachEvent("onload", initPage);
