$(function(){
  $("a[rel='gal']").each(function()
  {
    $(this).colorbox({transition:"fade",height:"98%"});
  });

  $("a.colorbox").colorbox({transition:"fade",maxHeight:"98%",
    current:"{current}. kép / {total}",
    previous:"&laquo;&nbsp;előző",
    next:"következő &raquo;",
    close:"Bezárás",
    speed:350,
    slideshowStop:"Diavetítés leállítása",
    slideshowStart:"Diavetítés"
  });


  $(".menu a").each(function(){
    var x=new String(document.location);
    if(x.indexOf($(this).attr("href"))>=0){
        $(this).addClass("aktiv");
    }
  });

  $(".menu2 a").each(function(){
    var x=new String(document.location);
    if(x.indexOf($(this).attr("href"))>=0){
        $(this).addClass("aktiv2");
    }
  });

});