//this script is intended to dynamically resize the images and surrounding tables on wrap.jsp pages
//to account for multiple new image sizes on the fly

$(window).bind('load', function() {
		var photo_width = $('img.wuPh2').width();
		$("div.wuCaptionClubs,div.wuRightClubs,td.primaryBg > table").width(photo_width);
		$("div.wuGalleryClubs table").removeAttr("width");
});
