// JavaScript Document
startList = function() {

navRoot = document.getElementById("MainMenu");
for (i=0; i<navRoot.childNodes.length; i++) {

node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {

this.className+="over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace("over", "");
   }
   }
  }
  
	$("#WhatIsDomain").hide();
	var locWhatIsDomain = $("#btnWhatIsDomain");
	var coordinates = locWhatIsDomain.offset();
	$("#WhatIsDomain").css("left",coordinates.left + 110);
	$("#WhatIsDomain").css("top",coordinates.top + -25);
	$("#WhatIsDomain").mouseout(function()
	{
		$("#WhatIsDomain").hide();
	});
  
 }


window.onload=startList;


