// JavaScript Document

$(window).load(function(){
   /* This is grandfathered from the old blogs to remove empty captions from Dynamo-style posts */   
   var images = $("div.individual-photo");
   if (images.length) {
  images.each(function(){
   $(this).width($(this).find("img").width());
   $(this).find("cite:empty").remove();
  });
   }
});

$("img[src*='/qd_empty.png']").hide();
$("cite:empty").hide();
