function showInfo(ele,disptext_flag)
{
switch (disptext_flag)
{
case  "Event" :
disptext = "Click here to display the navigation and page content filtering choices by <b>Event</b>.";
break;
case "Activity" : 
disptext = "Click here to display the navigation and page content filtering choices by <b>Activity</b>.";
break;
case "Sport" : 
disptext = "Click here to display the navigation and page content filtering choices by <b>Sport</b>.";
break;
case "Schools" : 
disptext = "Click here to display the navigation and page content filtering choices by your <b>Schools/Teams</b> of Interest.";
break;


}
 div=document.createElement("div");
 div.className="showschools";
 div.style.position="absolute";
 div.style.display="inline";
 div.style.zIndex=999999; 
 div.style.backgroundColor="#fff";
 div.style.color="";
 div.style.width="180px";
 div.style.padding="5px 5px";
 div.style.border="1px Solid #50ABEF";
 div.style.fontWeight="normal";
 div.id="menuHelpText";
 div.innerHTML=disptext;
 ele.parentNode.appendChild(div);
 div.style.left=div.offsetLeft-ele.offsetWidth; 
 div.style.top=div.offsetTop+20;
}

function hideInfo(ele)
{
 if($("menuHelpText"))
 $("menuHelpText").parentNode.removeChild($("menuHelpText"));
}

//Click here to display the navigation and page content filtering choices by Event.

//Click here to display the navigation and page content filtering choices by your School/Teams of Interest.