$(document).ready(function()
{
  $('.cmsBlocContent img').each(function(k, img)
  {
    img = $(img);
    if (parseInt(img.css('width')) > 574)
    {
      img.css('width', '574px');
      img.css('height', 'auto');
    }
  });
});
