$(document).ready(function()
{
	$('div.content img').each(function()
	{
		var _this = $(this);
		switch (_this.attr('align'))
		{
			case 'left':
				_this.addClass('imageLeft');
			break;
			
			case 'right':
				_this.addClass('imageRight');
			break;
			
			default:
				_this.addClass('image');
			break;
		}
	});
});



