var GlobalScripts = {
  require: function(src) {
    document.write("<script type=\"text/javascript\" src=\"" + src + "\"></script>\n");
  },
  load: function(path) {
    var path = path + "/js/";

    this.require(path + "jquery-1.4.min.js");
    this.require(path + "yui_mootools-release-1.11.js");
    this.require(path + "form_page.js");
    this.require(path + "cufon-yui.js");
    this.require(path + "sbrf-titles_500.font.js");
  }
}

// Now called from header.php to include the proper path
// GlobalScripts.load();