// Sets the video player up as well as the now playing area
function playVideo( id ) {
	$.ajax({
	  url: "/turbonick/ajax.php?a=2&vID="+id,
	  cache: false,
	  async: false,
	  dataType: 'html',
	  success: function(html){
		$("#flash").html('');
		$("#flashjs").html(html);
	  },
	  beforeSend: function() {
		$("#flash").html("<div style=\"text-align:center;padding-top: 170px;\"><img src=\"/turbonick/imgs/ajax-loader.gif\" alt=\"loading\" align=\"center\" \/></div>");
	  }
	});
	//recordTHE( 'video' , id );
}