// JavaScript Document
function ExternalLinks()
{
    var c=document.getElementById('Page');
    if(c)
    {
        var ls=c.getElementsByTagName('a');
        for(var i=0;i<ls.length;i++){
            if(ls[i].getAttribute('rel')=='external')
            {
                ls[i].className+=ls[i].className?' extlink':'extlink';
                ls[i].title+='(opens in new window)';
                ls[i].onclick=function(){window.open(this.href);return false;}
            }
        }
    }
}

function MouseOver(){
	var c=document.getElementById('NavigationBar');
	if (c) {
		var ls=c.getElementsByTagName('a');
		for(var i=0;i<ls.length;i++){
			ls[i].onmouseout=function(){this.firstChild.style.visibility='hidden';}
			ls[i].onmouseover=function(){this.firstChild.style.visibility='visible';}
		}
	}
}

