//////////////////////////////////////////////////////////
//
//  File: Global Javascript
//  Author: Craig Nelson
//
//

  // email current page
  document.observe("dom:loaded", function() {
    /*
    $("email-page").onclick = function() {
      var url = window.location.href;
      var query_string = "?subject=IVNA Architects";
      query_string += "&amp;body=" + encodeURIComponent(url);
      window.location = "mailto:" + query_string;
      return false;
    }
    */
  });
  // --email current page