
// Wait for the content ...
window.addEvent('domready', function(){
 
    /**
     * Set default options, overrideable from later calls.
     */
	SqueezeBox.initialize({
        size: {x: 700, y: 270}
    });
 
    /**
     * Assign SqueezeBox to all links with rel="boxed" attribute, the class then reads the "href".
     */
    SqueezeBox.assign($$('a[rel=boxed]') );
});