// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
function more_photos() {
  var the_style = document.getElementById("more_photos").style;
  if (the_style.display == "none") {
    the_style.display = "block";
  } else {
    the_style.display = "none";
  }
}

