$(function(){
    $('.list').find('img').each(function(){
        $(this).hover(function(){
            $(this).css('width','230px');
            $(this).css('margin-left','-15px');
            $(this).css('border','none');
            
        },
        function(){
            $(this).css('width','200px');
            $(this).css('margin-left','0px');
            $(this).css('border','3px solid #FFF');
        });
    });
});