
BlueDog.Page = Base.extend
({
    constructor: function()
    {
        Event.observe(window, 'load', this.windowOnLoad.bindAsEventListener(this));
    },
    
    windowOnLoad: function(event)
    {
        new BlueDog.UrchinBuilder($$("a.urchin"));
    }
});
