$(document).ready(function() {
  $("#main table img").each(function(i) {
    this.src = '/uploaded/'+this.src.split("/").pop();
  });
  $("img[longdesc='thumb']").each(function(i) {
	  $(this).addClass('thumb');
  });
  $("#main table p a").each(function(i) {
    var url = this.href.split("/");
    url.splice(0, 3);
    uri = url.join("/");
    this.href = 'http://'+window.location.hostname+'/'+uri;
  });
  $("#main table p > a").attr('rel', 'prettyPhoto');
});
