<!--
if (navigator.appName == "Microsoft Internet Explorer") {

startSEO = function() {
	node = document.getElementById("seo");
	node.onmouseover=function() {
		this.className+=" hover";
  	}
 	node.onmouseout=function() {
  		this.className=this.className.replace(" hover", "");
  	}
}
window.onload=startSEO;

}
//-->
