﻿// JScript File

     var in_menu = 0;
     var in_sub_menu = 0;
     var id = "";
	 var prev_mm = "";

     function Show(a)
     {      
      for (i = 2; i <= 4; i++)
      {
       if ("mm_"+i != a)
       {
        t = document.getElementById("div_mm_"+i)
        t.style.display = "none";
        t = document.getElementById("sm_mm_"+i)
        t.style.display = "none";       
       }
      }
      
      var b = document.getElementById("sm_" + a);
      if (b)
       b.style.display = "list-item";
      JTT = window.setTimeout("ShowNorm('"+a+"')", 300);
     }
     function ShowNorm(a)
     {
      var d = document.getElementById("div_" + a); 
      d.className="transparent_div";
      d.style.display= "block";
     }
     function Hide(a, c)
     {
      var b = document.getElementById("div_" + a);
      if (b && c == 0)
       b.style.display = "none";
     }
     function HideById(a, c)
     {
      var b = document.getElementById(a);
      
      if (b && c == 0)
       b.style.display = "none";
     }
     function ShowSubMenu(a, d)
     {
      /*document.all.div_mm_21.style.display = "none";
      document.all.div_mm_22.style.display = "none";
      document.all.mm_21.className = "";
      document.all.mm_22.className = "";
      document.all.text_mm_21.className = "";
      document.all.text_mm_22.className = "";
      document.all.img_mm_21.src = "img/arr_black.gif";
      document.all.img_mm_22.src = "img/arr_black.gif";
      document.all.div_mm_41.style.display = "none";
      document.all.div_mm_42.style.display = "none";
      document.all.mm_41.className = "";
      document.all.mm_42.className = "";
      document.all.text_mm_41.className = "";
      document.all.text_mm_42.className = "";
      document.all.img_mm_41.src = "img/arr_black.gif";
      document.all.img_mm_42.src = "img/arr_black.gif";*/
	  var prev = null;
	  if (prev_mm != "")
	    prev = document.getElementById(prev_mm);
	  if (prev)
	  {
		  prev.className = "";
		  prev_div = document.getElementById("div_" + prev_mm);
		  prev_img = document.getElementById("img_" + prev_mm);
		  prev_text = document.getElementById("text_" + prev_mm);
		  prev_div.style.display = "none";
		  prev_img.src = "img/arr_black.gif";
		  prev_text.className = "";
	  }
      in_menu=1;
      var c = document.getElementById(d);
      var b = document.getElementById("div_" + a.id);
      var i = document.getElementById("img_" + a.id);
      var t = document.getElementById("text_" + a.id);
      t.className = "orange";
      i.src = "img/arr_white.gif";
      b.style.top = (c.offsetTop + a.offsetTop) + "px" ;
      a.className = "submenu_hover";
      b.style.left = (c.offsetLeft + c.offsetWidth - 5) + "px";
      ShowNorm(a.id);      
      prev_mm = a.id;
     }
     function HideSubMenu(a)
     {if (in_sub_menu == 0)
      {
       var b = document.getElementById("div_" + a);      
       b.style.display = "none";
       var t = document.getElementById("text_" + a);
       t.className = "";
       var p = document.getElementById(a);
       p.className = "";
       var i = document.getElementById("img_" + a);
       i.src = "img/arr_black.gif";
      } 
     }