$(window).load(function(){
$(".figure").each(function(){
var figureWidth = $("img",this).width();
 if( figureWidth > 400 )
   { figureWidth = 625 }; 
     $(this).css({'width' : figureWidth });


});
}); 
