/* Force Resize Images */

'jQuery' in window && $(function(){
  var maxWidth = 480;   //max width
  
  if( maxWidth >= $(window).width() ){  // smart phone

    var c = document.getElementsByTagName('img');

    for (i = 0; i < c.length; i++) {
      var e = c[i];
      e.removeAttribute("height");
      e.style.setProperty("max-width", "100%", "important");
    }

  };
});
