// JavaScript Document
window.addEvent('domready', function() {

 
	/**
	 * That CSS selector will find all <a> elements with the
	 * attribute rel="boxed"
	 *
	 * The second argument sets additional options.
	 */
	SqueezeBox.assign($$('a[rel=boxed]'), {
		size: {x: 645},
		evalScripts: true,
		ajaxOptions: {
			method: 'get' 
		}
	});
	
	//SqueezeBox.open('http://www.google.co.ve', {handler: 'iframe'});
 
});

