$(window).load( function() {
    $(".news_item img").each(function () {
      if (this.width > "575") {
        $(this).attr("width","575");
      };
    });  
    window.print();
});
