// Webapp Tweaks

  $(document).ready(function(){
	// Redefine all href tags as onclick events to override the default iOS handling of opening links in a new Safari window,
	// except for href tags of class Highslide
    $("a").not(".highslide").click(function(event) {
      event.preventDefault();
      window.location = $(this).attr("href");
    });
  });

  $(window).load(function(){
	// Hide address bar in Safari on iOS devices
	window.scrollTo(0,0.9);
  });

