
window.addEvent('domready', function() {
 
	/**
	 * That CSS selector will find all <a> elements with the
	 * attribute rel="boxed" or rel="arProfile" for applicant video and ar profile respectively.
	 *
	 * The second argument sets additional options.
	 */
	SqueezeBox.assign($$('a[rel=actionJobs]'), {
		size: {x: 600, y: 550},
		ajaxOptions: {
			method: 'get' // we use GET for requesting plain HTML
		}
	});
	
	
	SqueezeBox.assign($$('a[rel=actionBrochure]'), {
		size: {x: 600, y: 300},
		ajaxOptions: {
			method: 'get' // we use GET for requesting plain HTML
		}
	});
	
	
	SqueezeBox.assign($$('a[rel=actionAlumni]'), {
		size: {x: 600, y: 500},
		ajaxOptions: {
			method: 'get' // we use GET for requesting plain HTML
		}
	});
 
var status = {
		'true': 'open',
		'false': 'close'
	};
 

 
});

