<!--
function MenuEnter(barId)
{
	barId.className = "Menu";		
}
function MenuLeave(barId)
{
	barId.className = "LinkOut";
}

function jumpout() 
{if (self.parent.frames.length != 0)
self.parent.location=self.location;
}
jumpout();


//___________________________________________________________________________

MenuItem=new Array()
MenuItem[0]=new Array("Home","index.html")
MenuItem[1]=new Array("About Dr. Ogah","about.html")
MenuItem[2]=new Array("Products","products.html")
MenuItem[3]=new Array("Services","services.html")
MenuItem[4]=new Array("Blog","http://www.gabrielogah.com/preview/serendipity")
MenuItem[5]=new Array("Booking Dr. Ogah","booking.html")
MenuItem[6]=new Array("Affiliates","affiliates.html")
MenuItem[7]=new Array("Contact Us","contactus.html")

function BuildMenu(aFile)
{
	document.write('<br><br>');
	document.write('<TABLE class=MenuOut cellSpacing=0 cellPadding=2 width=150 border=0><TR><TD vAlign=top>');
	var mBegin = '<TABLE cellSpacing=0 cellPadding=0 width=155 border=0><TR>';
	var mEnd   = '</TR></TABLE>';

	for (var i = 0; i < MenuItem.length; i++) 
	{
		var td="td" + i + " ";
		var cap=MenuItem[i][0];
		var fFile="'" + MenuItem[i][1] + "'";
		var temp='';

		//if (document.URL.indexOf(MenuItem[i][1]) > 0)
		if (aFile == MenuItem[i][0])
		{
			temp='<TD id=' + td + 'class=MenuDefault>' + cap + '</TD>';
		}else
		{
			temp='<TD id=' + td + 'class=LinkOut onclick="javascript:window.navigate(' + fFile + ')" onmouseout="MenuLeave(' + td + ')" onmouseover="MenuEnter(' + td + ')"><a href=' + fFile + '>' + cap + '</a></TD>';		
		};
		

		temp= mBegin + temp + mEnd;
		document.write(temp);
	}
	document.write('</TD></TR></TABLE>');
}

function BuildNavMenu()
{
	var temp='';
	for (var i = 0; i < MenuItem.length; i++) 
	{
		var cap=MenuItem[i][0];
		var fFile="'" + MenuItem[i][1] + "'";
		temp=temp + '|<a href=' + fFile + '>' + cap + '</a>';
	};
	temp= temp + '|';
	document.write(temp);	
}

function Identity()
{
	document.write('<p align="center"><a href="http://www.jbryanconsulting.com" target="_blank"><font face="Verdana" color="#dee7ef" size="1">Designed by Jbryan Consulting & Co - All Rights Reserved.</font></a></p>');
	//document.write("<img src='counter/counter.asp?Referer="+document.referrer+"&Width="+escape(screen.width)+"&Height="+escape(screen.height)+"' border=0 width=0 height=0>");
}

function WriteEmail(aMail)
{
	if (aMail == 'support')
	{	document.write('<a href="mailto:' + 'support' + '@mgsll.com">support' + '@mgsll.com</a>');
	}else if (aMail == 'bug')
	{	document.write('bug' + '@mgsll.com');
	}else if (aMail == 'info')
	{	document.write('suggestion' + '@mgsll.com');
	}else if (aMail == 'trans')
	{	document.write('trans' + '@mgsll.com');
	}else if (aMail == 'translation')
	{	document.write('<a href="mailto:' + 'trans' + '@mgsll.com">trans' + '@mgsll.com</a>');
	};		
}

function WriteSupportOS()
{
	document.write('<font color="#666666" size="1"><b>Supported Operating System</b> : Windows 95, Windows 98, Windows Me, Windows 2000, Windows XP or Windows NT 4.0 or later </font>');
}
//-->