// Lakeshore Playground JavaScript Code
//  Gallery prescaling functions.
//
// Written by Robert J. Rouquette
// Date: 12:44 PM 8/26/2007

var speed_fast = document.getElementById("speed_fast");
var speed_med  = document.getElementById("speed_med");
var speed_slow = document.getElementById("speed_slow");

speed_fast.onclick = function() {
  location.href = "/index.php?thumb_quality=low&url=" + encodeURIComponent(location.href);
}

speed_med.onclick = function() {
  location.href = "/index.php?thumb_quality=med&url=" + encodeURIComponent(location.href);
}

speed_slow.onclick = function() {
  location.href = "/index.php?thumb_quality=high&url=" + encodeURIComponent(location.href);
}
