$(function(){
  $(".lightbox").lightBox();
  
  $(".detailsLink").click(function(){
    $.get( $(this).attr("href"), show_details);
    return false;
  });
});

var show_details = function(partial){
  $(".detailsBox").remove();
  $("body").append(partial);
  $(".detailsBox").dialog({width: 680, position: "top", show: "slide", closeText: ' X ', modal: true});
};
