js = {};

js.include = function(path, async) {
   path = path.replace(/&amp;/g, "&");
   var async = async && true;
   $.ajax({
      type: "GET",
      url: path,
      dataType: "script",
      async: async
    });
 }
