
var video_ready = false;

function setVideo( video, comment ) {

	if( video_ready == false ) {
		// Video player has not been initialized yet
		playerOne = new FAVideo("vid", video, 480, 360,{ autoLoad:true, autoPlay:true, skinPath:'FAVideo/skins/ClearOverAll.swf', skinAutoHide:true  });
		video_ready = true;
		}
	else {
		// The video player was already initialized
		playerOne.play( video );
		}


	// Set the contents of the description div
	$("#gallery_info").html( comment );
	};