jQuery(window).load(function(){
	jQuery('#content img').filter(function(){return jQuery(this).width()>=500}).replaceWith(function(){

		return jQuery('<span class="roundedpic"></span>')
			.append(
				jQuery("<img />")
				.attr('src', 'images/spacer.gif')
				.attr('width', jQuery(this).width())
				.attr('height', jQuery(this).height())
			)
			.css('background-image', 'url('+this.src+')')
			.css('width', jQuery(this).width()+"px")
			.css('height', jQuery(this).height()+"px")
			
	});
});

