
function sbVid(vidFile) {
				var video = vidFile;
				var baseURL = "http://oficina.isolutionspa.com:8888/colibriHTML/";
				var vSrc = vidFile.split(".mov");
				var poster = vSrc[0]+".jpg";
				var flash = '<object type="application/x-shockwave-flash" data="'+baseURL+'js/mediaplayer/player.swf" style="width:640px; height:380px;"> <param name="movie" value="js/mediaplayer/player.swf" /><param name="allowscriptaccess" value="always"/> <param name="allowfullscreen" value="true" /> <param name="wmode" value="transparent"/> <param name="flashvars" value="plugins=hd-1\&hd.file='+baseURL+vSrc[0]+'-HD.m4v\&file='+baseURL+vSrc[0]+'.m4v\&image='+poster+'\&stretching=fill'+'\&hd.state=false\&autostart=true"\/><\/object>';
				
				var code = '<div id="vid" style="">'+flash+'<\/div>';
				code = code + '<div id="download-opts"><img src="/images/arrow_down_gray.png" height="28" align="middle"/><a href="'+baseURL+vSrc[0]+'-HD.m4v">(HD)</a> <a href="'+baseURL+vSrc[0]+'.m4v">(m4v,iOS)</a> <a href="'+baseURL+vSrc[0]+'.3gp">(3gp)</a></div>'
				Shadowbox.open({
					content:    code,
					player:     "html",
					height:     410,
					width:      640,
					handleOversize:     'none'
				});	
				
			}
			
function rmvSrc(){
				var myVideo = $('#thevideo').get();//document.getElementsByTagName('video')[0];
				myVideo.src="";
				//myVideo.load();
				//myVideo.play();
			}
