<!--
if(document.images)
{
	var path = "../images/top_nav/";
	var path_games = "../images/games/";
	
	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();
	relation_off = new Image();
	match_mkr_off = 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.gif";
	relation_off.src = path_games + "relation_on.gif";
	match_mkr_off.src = path_games + "match_mkr_on.gif";
	
	function glow(imgName, newMid)
	{
		document[imgName].src = eval(imgName + ".src");
		document['txt'].src = eval(newMid + ".src");
		document['bot_org_box3'].src = path + "bot_org_box3.gif"
	}
	function glowB(imgName)
	{
		document[imgName].src = eval(imgName + ".src");
	}
	function no_glow(imgName)
	{
		document[imgName].src = path + imgName + ".gif";
		document['txt'].src = path + "mid_games.gif"
		document['bot_org_box3'].src = path + "bot_org_box3_on.gif"
	}
	function no_glowB(imgName)
	{
		document[imgName].src = path_games + imgName + ".gif";
	}
}
//-->