$(function() {
  $('#main div:not(.slideshow) .content img:not(.noborder)').wrap('<div class="alphaborder">');
  $('.alphaborder').each(function (i) {
    $(this).height(jQuery("img", this).height()-10);
    $(this).width(jQuery("img", this).width()-10);
    $(this).css('background-image','url('+jQuery("img", this).attr("src")+')')
  });
});