function playerReady(thePlayer) {
	player = $('#ttw_video object')[0];
} 
var player=null;
$(document).ready(function(){
	var playlistArray=new Array();
	document.getElementById('ttw_video').innerHTML='<div id="ttw_videoplayer"></div>';
	var flashvars = {
			"playlistfile":"/swf/customplaylist.php%3Fpreview=Wise_EventTitle.jpg%26file=Wise_Teaser.f4v%26ad=%26name=TTW%20Overview%26captions=WISE_teaser.xml",
			"plugins":"/swf/captions.swf,/swf/audiodescription.swf",
			"audiodescription.state":"false",
			"captions.callback":"setCaption",
			"captions.hide":"true",
			"backcolor":"666666",
			"frontcolor":"f5f5f5"		
		};
	var params = {};
	//params.wmode = "opaque";
	params.swliveconnect = "true";
	params.allowscriptaccess = "always";
	params.allowfullscreen="true";
	var attributes = {};
	attributes.id = "ttw_player";
	attributes.name = "ttw_player";
	swfobject.embedSWF("/swf/vidplayer.swf", "ttw_videoplayer", "460", "371", "9.0.0", "/swf/playerProductInstall.swf", flashvars, params, attributes);
	
	changePlaylist('wise');
});
function setCaption(){
	//console.log('caption setter');
	if($('#ttw_player')[0].getPluginConfig('captions').state==true){
		$('#captiontxt').html($('#ttw_player')[0].getPluginConfig('captions').caption.replace(/\n/,'<br/>','gi'));
	} else {
		$('#captiontxt').html('');
	}
}
function colorSwap(){
	if($('#captiontxt').css('color')=="rgb(238, 238, 238)"){
		$('#captiontxt').css('color',"rgb(0, 0, 0)").css('background-color',"rgb(238, 238, 238)");	
	} else {
		$('#captiontxt').css('color',"rgb(238, 238, 238)").css('background-color',"rgb(0, 0, 0)");	
	}
	
}
function sizeSwap(){
	if($('#captiontxt').css('font-size')=="24px"){
		$('#captiontxt').css('font-size','16px').css('line-height','20px');	
	} else {
		$('#captiontxt').css('font-size','24px').css('line-height','24px');	
	}

}

function loadVid(file,ad,captions,preview,name){
	$('#videotitle').html('<h2>'+name+'</h2>');

	player=null;
	
	$('#ttw_video').empty().html('<div id="ttw_videoplayer"></div>');
var flashvars = {
			"playlistfile":"/swf/customplaylist.php%3Fpreview="+preview+"%26file="+file+"%26ad="+ad+"%26name="+name+"%26captions="+captions,
			"plugins":"/swf/captions.swf,/swf/audiodescription.swf",
			"audiodescription.state":"false",
			"captions.callback":"setCaption",
			"captions.hide":"true",
			"backcolor":"666666",
			"frontcolor":"f5f5f5"		
		};
	var params = {};
	//params.wmode = "opaque";
	params.swliveconnect = "true";
	params.allowscriptaccess = "always";
	params.allowfullscreen="true";
	var attributes = {};
	attributes.id = "ttw_player";
	attributes.name = "ttw_player";
	swfobject.embedSWF("/swf/vidplayer.swf", "ttw_videoplayer", "460", "371", "9.0.0", "/swf/playerProductInstall.swf", flashvars, params, attributes);
}


function buildPlaylistItemHTML(file,ad,captions,preview,name,description){
	var itemString='';
	itemString='<div class="playlistitem"><a href="#videotitle" class="thumblink" onclick="loadVid(\''+file+'\',\''+ad+'\',\''+captions+'\',\''+preview+'\',\''+name+'\')" title="Play '+name+'"><img src="/swf/preview/thumb/'+preview+'" width="88" height="66" align="left" alt="'+name+' Thumbnail"/></a><p class="videodescription"><a href="#videotitle" onclick="loadVid(\''+file+'\',\''+ad+'\',\''+captions+'\',\''+preview+'\',\''+name+'\')">'+name+'</a><br/>'+description+'</p></div><br style="clear:both;"/>';
	return itemString;
}

function changePlaylist(newListName){
		if((',wise,').indexOf(','+newListName+',')!=-1){
		playlistArray=new Object();
		playlistArray['wise']=[["Wise_Chapter1.f4v","WISE Ch 1 DVI.mp3","WISE_ch_1.xml","Wise_EventTitle.jpg","Chapter 1","Intro","Wise_EventTitle.jpg"],["Wise_Chapter2.f4v","WISE Ch 2 DVI.mp3","WISE_ch_2.xml","Wise_EventTitle.jpg","Chapter 2","SSDI Work Incentives","Wise_EventTitle.jpg"],["Wise_Chapter3.f4v","WISE Ch 3 DVI.mp3","WISE_ch_3.xml","Wise_EventTitle.jpg","Chapter 3","SSI Work Incentives","Wise_EventTitle.jpg"],["Wise_Chapter4.f4v","WISE Ch 4 DVI.mp3","WISE_ch_4.xml","Wise_EventTitle.jpg","Chapter 4","Ticket To Work","Wise_EventTitle.jpg"],["Wise_Chapter5.f4v","WISE Ch 5 DVI.mp3","WISE_ch_5.xml","Wise_EventTitle.jpg","Chapter 5","Next Steps","Wise_EventTitle.jpg"],["Wise_Seminar.f4v","WISE Full Seminar DVI.mp3","WISE_full seminar.xml","Wise_EventTitle.jpg","Play All","Full Seminar","Wise_EventTitle.jpg"]];
		var playlistString="";
		for(var x=0; x<playlistArray[newListName].length; x++){
			playlistString+=buildPlaylistItemHTML(playlistArray[newListName][x][0],playlistArray[newListName][x][1],playlistArray[newListName][x][2],playlistArray[newListName][x][3],playlistArray[newListName][x][4],playlistArray[newListName][x][5]);
		}
		$('.playlistitems').empty();
		$('.playlistitems').append(playlistString);
		
	}
}