// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

function scaleIt() {
  var scalePhotos = document.getElementsByClassName('scale-image');

  floorSize = .26;
  ceilingSize = 1.0;
  v = floorSize + (.5 * (ceilingSize - floorSize));

  for (i=0; i < scalePhotos.length; i++) {
    scalePhotos[i].style.width = '50';
  }
} 
