function IEHoverPseudo() {
	if (document.getElementById('subnav')) {
		var navItems = document.getElementById('subnav').getElementsByTagName('li');

		for (var i=0; i<navItems.length; i++) {
			if(navItems[i].className == "menuparent") {
				navItems[i].onmouseover=function() { this.className += " over"; }
				navItems[i].onmouseout=function() { this.className = "menuparent"; }
			}
		}
	}
}


function showPopUp(requestURI)
{
//  if (requestURI == "/meetings/")
//  {
//    window.open('/meetings_popup.php','_blank','top=300, left=300, toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=yes,width=365,height=200,innerWidth=200,innerHeight=100');
//  }
}


function changeLink()
{
	if(location.pathname=='/')
	{
		var img_link=document.getElementById("left_subscribe");
		img_link.childNodes[0].href="/piano_lounge";
	}
}