// Load AJAX Libraries
google.load("prototype", "1.6");
google.load("scriptaculous", "1.8");

// Instantiate and configure YUI Loader:
(function() {
    var loader = new YAHOO.util.YUILoader({
        base: "",
        require: ["fonts","reset"],
        loadOptional: false,
        combine: true,
        filter: "MIN",
        allowRollup: true,
        onSuccess: function() {
            //you can make use of all requested YUI modules
            //here.
        }
    });

// Load the files using the insert() method.
    loader.insert();
})();
