jQuery(document).ready(function()
{
	//adds the rounded corners to the inline images in the content
	jQuery(".roundimages .post:first img").each(function()
	{
		$imageHTML = '<span class="image-rounded ' + jQuery(this).attr('class') + '"><span class="tl"></span><span class="tr"></span><span class="bl"></span><span class="br"></span><img src="' + jQuery(this).attr('src') + '" alt="" width="' + jQuery(this).attr('width') + '" height="' + jQuery(this).attr('height') + '" /></span><!-- end of image rounded -->';
		jQuery(this).replaceWith($imageHTML);
	});
});