    $(document).ready(function() {

      $('a[href^="http://"]').attr("target", "_blank");

      $(".projektyCell img").each(function () {

          var imgWidth = $(this).width();
          imgWidth = Math.floor(imgWidth/2);
          $(this).css("margin-left","-"+imgWidth+"px");

      });

      $("ul.lide a").each(function(){

          $(this).click(function(){
            var parent = this.rel;
            $("ul.lide a").removeClass("active");
            $(this).addClass("active");
            $("#lide div").css("display","none");
            $("#lide div."+parent).css("display","block");
          });

     });



    });

