/*
getSummerVideo
*/

function summerVideo() {
	var id = 'videoBox';
	var file = E('vidFile').href;
	
	var params = {
		wmode	: 'transparent',
		bgcolor	: '#FFF',
		menu	: "false",
		scale	: "noScale",
		align	: "tl"
	};

	var vars = {
		/*videoWidth: 512,
		videoHeight: 385+15*/
		video: file,
		// autoSize: true,
		autoStart: true
	}
	
	var swf = /^http:\/\/www\.youtube.com/.test(file) ? file : './--swf--/VideoPlugin.swf';

	swfobject.embedSWF(swf, id, '100%', '100%', "9.0.0", "expressInstall.swf", vars, params);
	//~ swfobject.embedSWF(swf, id, 640, 480+15, "9.0.0", "expressInstall.swf", vars, params);
	
}


	
Event.add(window, 'load', summerVideo);