$(document).ready(function(){

	$("img").each(function() {

   //Get the width of the image
   var width = $(this).width();

   //Max-width substitution (works for all browsers)
   if (width > 380) {
     $(this).css("width", "380px");
       }

	});

});

