window.addEvent('domready', function() {
 
	/**
	 * You can provide preset options here ... if you want.
	 * You can SqueezeBox.assign without calling initialize, but
	 * not if you create the SqueezeBox with SqueezeBox.setContent
	 * (because initialize creates the used elements).
	 */
	SqueezeBox.initialize();
 	/**
	 * That CSS selector will find all <a> elements with the
	 * attribute rel="boxed" 	 * and href starting with a #.
	 *
	 * The second argument sets additional options
	 */http://versace/frontend_dev.php/product/list	
	
	SqueezeBox.assign($$('a[rel=boxed]'), {
		size: {x: 380, y: 420},
		ajaxOptions: {
			method: 'get' // we use GET for requesting plain HTML (you can skip it, it is the default value)
		}
	});

});