window.addEvent('domready',function(){

    // INITIALIZE SQUEEZEBOX

    // Set default options, overrideable from later calls.
    SqueezeBox.initialize({
        size    : {x: 540, y: 200},
        handler : 'iframe'
    });

    // Assign SqueezeBox to all links with rel="boxed" attribute, the class then reads the "href".
    SqueezeBox.assign($$('a[rel=boxed]'));


});