$(document).ready(function()
	{
	$('#content #left img').css({ 'margin' : '0px' });
    $('#content #left img').wrap('<div class="img-wrapper" />' );
    $('#content #left img').each( function()
        {
        var img = $(this);
        var wrapper = $(this).parent();
        wrapper.width( img.width() );
        wrapper.height( img.height() );
        if ( img.css('float') == 'left' )
            {
            wrapper.css('float' , 'left');
            wrapper.css('marginRight' , '12px');
            }
        if ( img.css('float') == 'right' )
            {
            wrapper.css('float' , 'right');
            wrapper.css('marginLeft' , '12px');
            }
        wrapper.css('marginBottom' , '12px');
        } );
    });