$(document).ready(function(){
    $(".m_others").hide();
    $(".m_menza").hide();
    


    $(".slideinbox").mouseout(function () {
      autoslide('slideinbox');
    }).change();
    
    
    $(".maplink").mouseover(function () {
      $(".m_dettext").hide();
      //alert($(this).attr("id"));
      $("."+$(this).attr("id")).show();
    }).change();
       
    $(".blubut").click(function () {
      if($(".m_kolej").css("display") == "block"){
        $(".m_kolej").fadeOut();
      }
      else{
        $(".m_kolej").fadeIn();
      }
      return false;
    }).change();  
    
    $(".orabut").click(function () {
      if($(".m_menza").css("display") == "block"){
        $(".m_menza").fadeOut();
      }
      else{
        $(".m_menza").fadeIn();
      }
      return false;
    }).change();  
        
    $(".grabut").click(function () {
      if($(".m_others").css("display") == "block"){
        $(".m_others").fadeOut();
      }
      else{
        $(".m_others").fadeIn();
      }
      return false;
    }).change();  
  });

