SqueezeBox.scanPage = function() {
    SqueezeBox.initialize({
        size    : {x: 540, y: 450},
        handler : 'iframe'
    });
    // Assign SqueezeBox to all links with rel="boxed" attribute, the class then reads the "href".
    SqueezeBox.assign($$('a[rel=boxed]'));
};

window.addEvent("domready", SqueezeBox.scanPage);

if (Browser.Engine.webkit) {
    window.addEvent("load", SqueezeBox.scanPage);
}

