window.addEvent('domready', function() {	
	SqueezeBox.initialize();		
		SqueezeBox.assign($$('a[rel=boxed]'), {
			size: {x: 455, y: 370},
			handler:'iframe',
			ajaxOptions: {
				method: 'get' // we use GET for requesting plain HTML (you can skip it, it is the default value)
			}
		});
		SqueezeBox.assign($$('a[rel=boxed2]'), {
			size: {x: 263, y: 300}
		});
});	
