<!--
var rootPath = "http://www.sazankanet.com/";
var thisPath = document.URL;
var thisLength = thisPath.length;
var rootLength = rootPath.length;
var lengthDiffer = thisLength-rootLength;
var thisRelative = thisPath.substr(rootLength,lengthDiffer);
var thisDepth = thisRelative.split("/");
var getDepth = thisDepth.length-1;

var DepthArray = new Array(5);
DepthArray[0] = "./";
DepthArray[1] = "../";
DepthArray[2] = "../../";
DepthArray[3] = "../../../";
DepthArray[4] = "../../../../";

var img = new Array();

img[1] = new Image();  img[1].src = "" + DepthArray[getDepth] + "image/menu_1o.gif"
img[2] = new Image();  img[2].src = "" + DepthArray[getDepth] + "image/menu_2o.gif"
img[3] = new Image();  img[3].src = "" + DepthArray[getDepth] + "image/menu_3o.gif"
img[4] = new Image();  img[4].src = "" + DepthArray[getDepth] + "image/menu_4o.gif"
img[5] = new Image();  img[5].src = "" + DepthArray[getDepth] + "image/menu_5o.gif"
img[6] = new Image();  img[6].src = "" + DepthArray[getDepth] + "image/menu_6o.gif"
img[7] = new Image();  img[7].src = "" + DepthArray[getDepth] + "image/menu_7o.gif"
img[8] = new Image();  img[8].src = "" + DepthArray[getDepth] + "image/menu_8o.gif"
img[11] = new Image();  img[11].src = "" + DepthArray[getDepth] + "image/menu_1.gif"
img[12] = new Image();  img[12].src = "" + DepthArray[getDepth] + "image/menu_2.gif"
img[13] = new Image();  img[13].src = "" + DepthArray[getDepth] + "image/menu_3.gif"
img[14] = new Image();  img[14].src = "" + DepthArray[getDepth] + "image/menu_4.gif"
img[15] = new Image();  img[15].src = "" + DepthArray[getDepth] + "image/menu_5.gif"
img[16] = new Image();  img[16].src = "" + DepthArray[getDepth] + "image/menu_6.gif"
img[17] = new Image();  img[17].src = "" + DepthArray[getDepth] + "image/menu_7.gif"
img[18] = new Image();  img[18].src = "" + DepthArray[getDepth] + "image/menu_8.gif"

function m_in(nam,num){
document.images[nam].src = img[num].src;
}

function m_out(nam,num){
document.images[nam].src = img[num].src;
return false;
}

//-->