var PhotoSlider = Class.create(AC.Slider, {
    populate: function () {
        $$(".page").each(function (a) {
            this.items.push(new AC.SliderItem(a))
        }.bind(this));
        this.render(1);
        this.resetPages()
    }
});
Event.observe(window, "load", function () {
    var b = new PhotoSlider("slider");
    b.setCarousel(false);
    new AC.ViewMaster.Viewer(null, "swap", "swap", {
        initialId: "logotipo13"
    });
    var a = new AC.ViewMaster.Tracker("click")
});
