window.addEvent('domready', function() {
	/**
	 * That CSS selector will find all <a> elements with the
	 * class boxed
	 *
	 * The example loads the options from the rel attribute
	 */
	SqueezeBox.assign($$('a.boxed'), {
		parse: 'rel',
		closable: false
	});

});

var redirect_and_close = function redirectParentAndClose(url) { parent.location=url; parent.SqueezeBox.close(); }