$(function(){

  $("div.head").bind("click",function(){
    document.location="/";
  });

  $("a[target=_blank]").each(function()
  {
     var ref = new String($(this).attr("href"));
     if( ref.indexOf(".jpg") != -1 )
     {
      $(this).colorbox(
      {height:"98%"}
      );
     }
  });
  $("a[rel='gal']").each(function()
  {
    $(this).colorbox({transition:"fade",height:"98%"});
  });

  $("a.colorbox").colorbox({transition:"fade",height:"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 s = document.location.toString();
        var hr = $(this).attr("href");
        if(hr!="/" && s.indexOf(hr) >=0  ){
            $(this).addClass("active");
        }

    });


});
