$(function(){
  $("ul#sidebar ul").hide();
  $("ul#sidebar .aktywne").parents().show();
  $("ul#sidebar a").click(function(){
    var tohide = $("ul#sidebar ul:visible").not($(this).parents());
    tohide.hide("slow");
    $(this).next("ul").not(tohide).toggle("slow");
    $("#text").html("<h2>Trwa wczytywanie strony...</h2>").load($(this).attr("href") + " #text > *");
    return false;
  });
  
  $("#logo").flash({
    swf: 'swf/logo.swf',
    height: 95,
    width: 200
  });
  
	$("#mainpage").flash({
    swf: 'glowna.swf',
    height: 980,
    width: 390
  });
  
});