function vid_layer(dir,id){
	if(dir=="open"){
		document.getElementById('vid_layer').style.display = "";
		
		document.getElementById('videoholder').innerHTML = '<div class="vzaar_media_player"><object id="video" width="480" height="270" type="application/x-shockwave-flash" data="http://view.vzaar.com/'+id+'.flashplayer"><param name="movie" value="http://view.vzaar.com/'+id+'.flashplayer"><param name="allowScriptAccess" value="always"><param name="allowFullScreen" value="true"><param name="wmode" value="transparent"><param name="flashvars" value="border=none"><embed src="http://view.vzaar.com/'+id+'.flashplayer" type="application/x-shockwave-flash" wmode="transparent" width="480" height="270" allowScriptAccess="always" allowFullScreen="true" flashvars="border=none"></embed><video width="480" height="270" src="http://view.vzaar.com/'+id+'.mobile" poster="http://view.vzaar.com/'+id+'.image" controls onclick="this.play();"></video></object></div>';
		 //$("#vid_layer").fadeIn(1000);
	}else{
		document.getElementById('videoholder').innerHTML = "";
		document.getElementById('vid_layer').style.display = "none";
		 //$("#vid_layer").fadeOut(600);
	}
}//end function


