// Sol menü scripts

function over(theId, statusMsg)
{
	if (document.getElementById)
	{		
		var imgId = document.getElementById(theId + "_img");
		imgId.src = "Images/BulletCloseOver.gif";		
	}
}

function up(theId)
{	
	if (document.getElementById) var imgId = document.getElementById(theId + "_img");
	imgId.src = "Images/BulletCloseUp.gif";
}

menuStatus = new Array();

function showHide(theId)
{
	if (document.getElementById)
	{
		var switchId = document.getElementById(theId);	
		if (menuStatus[theId] != 'show')
		{
			switchId.className = 'show';
			menuStatus[theId] = 'show';
		}
		else
		{
			switchId.className = 'hide';
			menuStatus[theId] = 'hide';
		}
	}
}

var folderName = "/";
var menuIds = new Array("submenu1", "submenu1", "submenu1", "submenu1", "submenu1", "submenu2", "submenu2", "submenu2", "submenu2", "submenu2", "submenu3", "submenu3", "submenu3");
var pageNames = new Array("degerlikargotasimaciligi.html", "operasyon.html", "yurtici.html", "uluslararasi.html", "kasalama.html", "nakittasima.html", "bankacilik.html", "kuyumculuk.html", "perakendezinciri.html", "eglencevespor.html", "atmhizmetleri.html", "flmhizmet.html", "kabaelek.html");

function showCurrentSubMenu()
{
	for (var i = 0; i < pageNames.length; i++)
	{
		var path = folderName + pageNames[i];		
		if(path == location.pathname.toLowerCase())
		{
			showHide(menuIds[i]);
			return;
		}
	}
}

window.onload = function()
{
	showCurrentSubMenu();
};