 $(document).ready(function(){
    
    $("#gal-op a.or").click(function(){
        //alert($(this).attr("href"));
        $("body")
            .append('<div class="popup"><img title=""'+$(this).attr("title")+'"" src="'+$(this).attr("href")+'" /></div>').click(function(){
            $(".popup",this).remove();
            });
            //alert($("body div").css("height"));
            //alert($("body div").get(0).offsetHeight);
        $(".popup").css({
            "min-height": $("body div").get(0).offsetHeight+10});
            $(".popup").css({
            "height": $("body div").get(0).offsetHeight+10});
        $(".popup img").css({
            "margin-top": document.documentElement.scrollTop + 20});
        return false;
    });
  });