function hoverText() {
	var box = document.getElementsByTagName("div");
	for(var i = 0; i < box.length; i++){
		if (box[i].className.indexOf("seo-block") != -1){
			var innerBox = box[i].getElementsByTagName("div");
			for (var j = 0; j < innerBox.length; j++){
				if (innerBox[j].className.indexOf("right") != -1){
					var _hover = innerBox[j].getElementsByTagName("p");
					for(var x = 0; x < _hover.length; x++){
						if(_hover[x].className.indexOf("head") == -1){
							_hover[x].onmouseover = function(){
								this.className += " hover";
							}
							_hover[x].onmouseout = function(){
								this.className = this.className.replace("hover", "");
							}
						}
					}
				}
			}
		}
	}
}
if (window.addEventListener)
	window.addEventListener("load", hoverText, false);
else if (window.attachEvent)
	window.attachEvent("onload", hoverText);