﻿var site = {
    domready: function () {
        new backSlide();
        new menu();
    },
    call: function (action, args) {
        this.fireEvent(action, args);
        return void (0);
    }
};
$extend(site, new Events());
window.addEvent("domready", function () { site.domready(); });
