/**
 * -------------------------------------------------
 * SCRIPT TO INJECT THE FUTURE STUDENTS FLASH MODULE
 * -------------------------------------------------
 */

window.addEvent('domready', function()
{
	// flash //
	this.swf = new Swiff('flash/future_students.swf' + (Browser.Engine.trident? '?rand=' + new Date().getTime() : ''),
	{
		id:'VideoPlayer',
		width:562,
		height:496,
		params:{base:'flv',quality:'high',bgcolor:'#FFFFFF',loop:'false', wmode:'window',allowScriptAccess:'always'},
		vars:{},
		callBacks:{}
	}); 
	
	this.swfzone = $(document.body).getElement('td.column3');
	this.swfzone.empty();
	this.swfzone.grab(new Element('div', {style:'background-color:#FFFFFF;'}));
	this.swfzone.getFirst().adopt(this.swf);
});