$(document).ready(function(){

  zoomb = $(".igallery .pictures a").click(function(e){
    e.preventDefault();
    m = $(this).parent().parent().find(".gallery_zoomb_holder");
    m.load($(this).attr("href"))
    
    console.log("Image: %s", $(this).attr("href"));
  })
  
})

