Event.observe(window, 'load', function() {
    var elem = $$('.help-box');
    elem.each(function(item) {
        Event.observe(item, 'click', function() {
           document.location.replace(SiteVars.path_to_top + '/contact_us') 
        });
    });
    
    
    if (typeof document.body.style.maxHeight == "undefined") {
      // newer stuff here
      var relem = $$('.route-content');
      var ielem = $$('.map');
      
      if (relem[0] != null && ielem[0] != null) {
        var first_para = Element.select(relem[0], 'p')[0];
        if (first_para != null) {
          $(first_para).insert({'top':ielem[0]});
        }
      }
    }
    
    
    
    
});
