	var visibleMenu  = null;
	var visibleArrow = null;
	var currentMenu  = 103;
	
	function menuDepartmentSlideWithArrowShow(id)
	{
		if (visibleMenu != null)
		{
			visibleMenu.style.display = 'none';
			visibleArrow.src = '/images/arrow-side.gif';
		}
		
		try
		{
			visibleMenu = document.getElementById('tbl' + id);
			visibleMenu.style.display = 'block';
			
			visibleArrow = document.getElementById('img' + id);
			visibleArrow.src = '/images/arrow-down.gif';
		}
		catch(e)
		{
		
		}
	}
	
	function menuDepartmentDropDownShow(id)
	{
		if (visibleMenu != null)
		{
			visibleMenu.style.display = 'none';
		}
		
		try
		{
			visibleMenu = document.getElementById('tbl' + id);
			visibleMenu.style.display = 'block';
			
		}
		catch(e)
		{
		
		}
	}	
	
	
	function menuDepartmentJump(cbx)
	{
		var url = cbx.value;
		
		if (url.length == 0)
		{
			return;
		}

		window.location = url;
	}
	

