function show_calendar(date){
    var date;
    $("#kalendarz").load("/data/ajax/calendar.php?show_calendar="+date);
  }





  function show_day(date){
   var date;

   $("#dialog").load("/data/ajax/calendar.php?show_day="+date);

       $("#dialog").dialog({
           width:800,
           height: 600,
           modal: true,
           overlay: {
               opacity: 0.8,
               background: "black"
           }
       });
   $("#dialog").show();
  }







  function show_comments(section, idx, page){
    var section, idx, page;

    $("#comments").addClass("loadingForum");
    $("#comments").load("/data/ajax/comments.php?section="+section+"&show_comments="+idx+"&page="+page);
    $("#comments").removeClass("loadingForum");

  };




  function show_element(element){
    var element;
    $("#"+element).toggle("Slow");

  };




  /*Menu zwykle*/
  function show_element_array(elementarray){
    var elementarray, help = new Array() ;
    help = explode(",", elementarray, 100);

    for(var i = 0; i < help.length; i++ ) {
     $("#menu_"+help[i]).toggle("fast");
     $("#menux_"+help[i]).removeClass("MenuLeftNormal");
     $("#menux_"+help[i]).addClass("MenuLeftActive");
    }
    
  };

  function active_element(element){
    var element;
    $("#menu_"+element+" ").css("font-weight", "bold");
  };











   function explode(delimiter, string, limit)
   {
     var a = string.split(delimiter);
     if (arguments.length > 2) a = a.slice(0, limit);
     return a;
   }





