<!--
if(document.images)
{
	var path = "../images/top_nav/";
	top_org_box1 = new Image();
	top_org_box2 = new Image();
	top_org_box3 = new Image();
	bot_org_box1 = new Image();
	bot_org_box2 = new Image();
	bot_org_box3 = new Image();
	txt_1 = new Image();
	txt_2 = new Image();
	txt_3 = new Image();
	txt_4 = new Image();
	txt_5 = new Image();
	txt_6 = new Image();
	
	txt_1.src = path + "mid_home.gif";
	txt_2.src = path + "mid_episode.gif";
	txt_3.src = path + "mid_cast.gif";
	txt_4.src = path + "mid_bscenes.gif";
	txt_5.src = path + "mid_photo.gif";
	txt_6.src = path + "mid_games.gif";
	top_org_box1.src = path + "top_org_box1_on.gif";
	top_org_box2.src = path + "top_org_box2_on.gif";
	top_org_box3.src = path + "top_org_box3_on.gif";
	bot_org_box1.src = path + "bot_org_box1_on.gif";
	bot_org_box2.src = path + "bot_org_box2_on.gif";
	bot_org_box3.src = path + "bot_org_box3_on.gif";
	
	function glow(imgName, newMid)
	{
		document[imgName].src = eval(imgName + ".src");
		document['txt'].src = eval(newMid + ".src");
		document['top_org_box3'].src = path + "top_org_box3.gif"
	}
	function no_glow(imgName)
	{
		document[imgName].src = path + imgName + ".gif";
		document['txt'].src = path + "mid_cast.gif"
		document['top_org_box3'].src = path + "top_org_box3_on.gif"
	}
}
//-->