/* ©2008 Creative Spark */
window.addEvent("domready", function(){
	var A=$("video");
	if(A){
		if (A.get('class').test(/video-/)) {
			A.grab(new Swiff("/flash/video/video-player-large.swf",{
				width:628,height:390,params:{wMode:"transparent"},vars:{videoFile:"/videos/"+A.get('class').substring(A.get('class').indexOf('video-') + 6, (A.get('class').indexOf(' ', 6) == -1 ? 100 : A.get('class').indexOf(' ', 6)))+".flv"}
			}),"after").dispose();
		} else {
			A.grab(new Swiff("/flash/video/video-player.swf",{
				width:408,height:329,params:{wMode:"transparent"},vars:{videoFile:"/flash/webhigh.flv"}
			}),"after").dispose();
		}
	}
	var B=$("kidsvideo");
	if(B){
		B.grab(new Swiff("/flash/video/video-player-wide.swf",{
			width:408,height:266,params:{wMode:"transparent"},vars:{videoFile:"/videos/freestyle-trick1.flv"}
		}),"after").dispose();
	}
});