

$(document).ready(function() {
	
	$('#maincontent img').each(function() {
		switch($(this).css('float')) {
			case 'right':
				$(this).css('marginLeft', '20px');
			break;
			case 'left':
				$(this).css('marginRight', '20px');
			break;
		}
	});
	
});
