$(document).ready(function(){
  $('div#sydyrjanie div.itemdesc img').each(function(){
    var itemWidth = $(this).width();
    if(itemWidth > 620){
      $(this).css({width: 620+'px'});
    }
  });
});
