if (top.location != location) {
  top.location.replace(location);
}

$(document).ready(function() {
  $(".gallery .image a").click(function() {
    $("<img id=\"popup\" src=\"" + $(this).attr("href") + "\" />").load(function() {
      $(this).appendTo("body").lightbox_me({
        centered : true,
        destroyOnClose : true
      });
    });
    
    return false;
  });
});
