// JavaScript Document

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

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