var submenu=new Array()

// Set submenu contents. Expand as needed. For each content, make sure everything exists on ONE LINE. Otherwise, there will be JS errors.
submenu[0]='<TABLE CELLPADDING="0" CELLSPACING="0" BACKGROUND="/photos/nav-bg.gif" WIDTH="100%" HEIGHT="20"><TR><TD VALIGN="top" ALIGN="CENTER">&nbsp;</TD></TR></TABLE>';
submenu[1]='<TABLE CELLSPACING="0" CELLPADDING="0" CLASS="navigationDiv"><TR><TD ALIGN="right"><a href="http://www.3g.newmobilemedia.com/what-3G-technology.htm">What is 3g?</a> | <a href="http://www.3g.newmobilemedia.com/3g-mobile-phones.htm">3g Phone Reviews</a> | <a href="http://www.3g.newmobilemedia.com/latest-3g-data-cards.htm">3g Datacards</a> | <a href="http://www.3g.newmobilemedia.com/3g-uk-mobile-networks.htm">3g Networks</a> | </TD></TR></TABLE>';
submenu[2]='<TABLE CELLSPACING="0" CELLPADDING="0" CLASS="navigationDiv"><TR><TD ALIGN="right"><a href="http://www.bluetooth.newmobilemedia.com/what-is-bluetooth.htm">What is Bluetooth?</a> | <a href="http://www.bluetooth.newmobilemedia.com/bluetooth-phones.htm">Bluetooth Phones</a> | <a href="http://www.bluetooth.newmobilemedia.com/bluetooth-headsets-guide.htm">Bluetooth Headsets</a> | <a href="http://www.bluetooth.newmobilemedia.com/free-bluetooth-software.htm">Free Bluetooth Software</a> |</TD></TR></TABLE>';
submenu[3]='<TABLE CELLSPACING="0" CELLPADDING="0" WIDTH="100%" HEIGHT="20" ALIGN="center" CLASS="navigationDiv"><TR><TD ALIGN="right"><a href="http://www.gaming.newmobilemedia.com/mobile-gaming-history.htm">Mobile game history</a> | <a href="http://www.gaming.newmobilemedia.com/free-mobile-games.htm">Free mobile game downloads</a> |</TD></TR></TABLE>';
submenu[4]='<TABLE CELLSPACING="0" CELLPADDING="0" WIDTH="100%" HEIGHT="20" ALIGN="right" CLASS="navigationDiv"><TR><TD ALIGN="right"><a href="http://www.messaging.newmobilemedia.com/sms/index.htm">SMS</a> | <a href="http://www.messaging.newmobilemedia.com/blackberry/index.htm">Blackberry</a> |</TD></TR></TABLE>';
submenu[5]='<TABLE CELLSPACING="0" CELLPADDING="0" WIDTH="100%" HEIGHT="20" ALIGN="right" CLASS="navigationDiv"><TR><TD ALIGN="right"><a href="http://www.freemobile.newmobilemedia.com/index.php?cat=5">Free Ringtones</a> | <a href="http://www.freemobile.newmobilemedia.com/index.php?cat=12">Free Mobile Games</a> | <a href="http://www.freemobile.newmobilemedia.com/index.php?cat=10">Free Videos</a> | <a href="http://www.freemobile.newmobilemedia.com/">Free Wallpapers</a> | <a href="http://www.freemobile.newmobilemedia.com/index.php?cat=8">Free Screensavers</a> |</TD></TR></TABLE>';
submenu[6]='<TABLE CELLSPACING="0" CELLPADDING="0" WIDTH="100%" HEIGHT="20" ALIGN="right" CLASS="navigationDiv"><TR><TD ALIGN="right"><a href="http://www.shop.newmobilemedia.com">Mobile Phone Shop UK</a> |</TD></TR></TABLE>';
// Set delay before submenu disappears after mouse moves out of it (in milliseconds)
var delay_hide=500

// No need to edit beyond here
var menuobj = document.getElementById? document.getElementById("describe") : document.all? document.all.describe : document.layers? document.dep1.document.dep2 : ""

function show_menu(which) {
	clear_delayhide()
	thecontent=(which==-1)? "" : submenu[which]
	if (document.getElementById||document.all)
		menuobj.innerHTML=thecontent
	else if (document.layers){
		menuobj.document.write(thecontent)
		menuobj.document.close()
	}
}

function reset_menu(e){
	if (document.all&&!menuobj.contains(e.toElement))
		delayhide=setTimeout("show_menu(-1)",delay_hide)
	else if (document.getElementById&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
		delayhide=setTimeout("show_menu(-1)",delay_hide)
}

function clear_delayhide(){
	if (window.delayhide)
		clearTimeout(delayhide)
}

function contains_ns6(a, b) {
	while (b.parentNode)
		if ((b = b.parentNode) == a)
			return true;
	return false;
}

window.onLoad = show_menu(0);