if (navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPad/i)) {
var viewportmeta = document.querySelectorAll('meta[name="viewport"]')[0];
if (viewportmeta) {
viewportmeta.content = 'width=device-width, minimum-scale=1.0, maximum-scale=1.0';
document.body.addEventListener('gesturestart', function() {
viewportmeta.content = 'width=device-width, minimum-scale=0.25, maximum-scale=1.6';
}, false);
}
}

(function($) {
  var cache = [];
  // Arguments are image paths relative to the current page.
  $.preLoadImages = function() {
    var args_len = arguments.length;
    for (var i = args_len; i--;) {
      var cacheImage = document.createElement('img');
      cacheImage.src = arguments[i];
      cache.push(cacheImage);
    }
  }
})(jQuery)
jQuery.preLoadImages("me-mid.png", "http://hellofisher.com/img/me-large.png");
jQuery.preLoadImages("me-mid.png", "http://hellofisher.com/img/me-large-hover.png");
jQuery.preLoadImages("me-mid.png", "http://hellofisher.com/img/me-mid.png");
jQuery.preLoadImages("me-small-mid.png", "http://hellofisher.com/img/me-small-mid.png");
jQuery.preLoadImages("me-small.png", "http://hellofisher.com/img/me-small.png");

