
$(document).ready(function (){
	$("#imgcontent img").each(function (){
											  var w = $(this).width();
											  var h = $(this).height();
											  var neww = 630;
											  if(w>neww){
												  $(this).width(neww);
												  $(this).height(neww*h/w);
											  }
											  });
				 
							 });

