var createFlashVideoBox = function(option) {
	
	var flashVideoBox = new Swiff('/flash/students.swf', {
    	id: 'studentsFlash',
		name: 'studentsFlash',
    	width: 235,
    	height: 340,
   		params: {
        	wmode: 'transparent',
        	bgcolor: '#FFFFFF',
      		loop: 'false',
			menu: 'false',
       		quality: 'high',
   			scale: 'noscale',
			allowScriptAccess: 'always',
    		allowFullScreen: 'true',
			play: 'true'
    	},
		vars: {
        	linkvideo: linkvideo
    	}
	});

	(function() {flashVideoBox.inject($('videobox'));}).delay(1000);
	
	
	$('simplybox').getFirst('ul').getFirst('li').getNext('li').getFirst('a').addEvent('mouseover', function() {
		Swiff.remote($('studentsFlash'), 'bgGlowOver', '0');																					
	});
	
	$('simplybox').getFirst('ul').getFirst('li').getNext('li').getFirst('a').addEvent('mouseout', function() {
		Swiff.remote($('studentsFlash'), 'bgGlowOff', '0');																					
	});	

}

window.addEvent('domready', createFlashVideoBox);
