function component_IndexSingleVideo(auto_id)
{
	this.DOMConstruct('IndexSingleVideo', auto_id);
	
	var handler = this;
	
	this.references = [];
	
	this.delegates = {
		
	};
}

component_IndexSingleVideo.prototype =
	new SK_ComponentHandler({
		
		construct : function( data ){
	
			var handler = this;

			var s1 = new SWFObject( data.src, "single_video", 250, 200, "7", "#252525" );
			s1.addParam("allowfullscreen","true");
			s1.addVariable("file", data.video_src);
			s1.addVariable("showdownload","true");
			s1.addVariable("bufferlength","5");
			s1.addVariable("autostart","true");
			s1.addVariable("repeat","true");
			s1.addVariable("width","250");
			s1.addVariable("height","200");


			s1.write(this.$('#single_video').attr('id'));
	
	}
	});
