// JavaScript Document

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