	charts = new Image();
	charts.src = "/bbcom/images/nav_top_charts_on.gif";
	news = new Image();
	news.src = "/bbcom/images/top_nav_news_over.gif";
	artists = new Image();
	artists.src = "/bbcom/images/top_nav_artists_over.gif";
	shop = new Image();
	shop.src = "/bbcom/images/top_nav_shop_over.gif";
	biz = new Image();
	biz.src = "/bbcom/images/top_nav_tools_over.gif";
	video = new Image();
	video.src = "/bbcom/images/top_nav_entertain_over.gif";
	interact = new Image();
	interact.src = "/bbcom/images/top_nav_interact_over.gif";
	subCharts = new Image();
	subCharts.src = "/bbcom/images/top_nav_charts_submenu_bg.gif";
	subNews = new Image();
	subNews.src = "/bbcom/images/top_nav_news_submenu_bg.gif";
	subArtists = new Image();
	subArtists.src = "/bbcom/images/top_nav_artists_submenu_bg.gif";
	subBiz = new Image();
	subBiz.src = "/bbcom/images/top_nav_tools_submenu_bg.gif";
	subVideo = new Image();
	subVideo.src = "/bbcom/images/top_nav_entertain_submenu_bg.gif";
	subInteract = new Image();
	subInteract.src = "/bbcom/images/top_nav_interact_submenu_bg.gif";
	
	var gobIsIe = navigator.userAgent.indexOf('MSIE') >= 0 ? true : false;
	var gobTimeout;
	var gobMenu;
	var gobSubMenus = new Array();
	
	gobHider = function(mId) {
		var gobLinkI = document.getElementById(mId + "Link");
		var gobSubI = document.getElementById(mId + "Sub");

		gobLinkI.className = "topLink";
		gobSubI.style.display = "none";
		clearTimeout(gobTimeout);
	}
	
	gobShow = function() {
		for (gobI = 0; gobI < gobSubMenus.length; gobI++) {
			var gobLinkI = document.getElementById(gobSubMenus[gobI].id + "Link");
			var gobSubI = document.getElementById(gobSubMenus[gobI].id + "Sub");
			if (this.id + "Sub" == gobSubI.id) {
				gobLinkI.className = "topLink mHover";
				gobSubI.style.display = "block";
			}
			else {
				gobLinkI.className = "topLink";
				gobSubI.style.display = "none";
			}
		}
		clearTimeout(gobTimeout);
	}

	gobHide = function() {
		gobTimeout = setTimeout("gobHider('" + this.id + "')", 1800);
	}
