var player = null;
var currentVid = "vidthumb1";

function playerReady(thePlayer) {
	player = window.document[thePlayer.id];
	
}


function createPlayer() {
	var flashvars = {
		file:"http://chryslermedia.iconicweb.com/video/1659/UTP11-20-09.flv", 
		image:"images/video1.jpg",
		autostart:"false",
		controlbar:"over"
	}
	var params = {
		allowfullscreen:"true", 
		allowscriptaccess:"always",
		wmode:"transparent"
	}

	var attributes = {
		id:"player1",  
		name:"player1"
	}

	swfobject.embedSWF("player.swf", "vidplayer", "544", "295", "9.0.115", true, flashvars, params, attributes);
}

function vidChange(argVideo, argId){
	player.sendEvent('STOP'); 
	player.sendEvent('LOAD', argVideo); 
	player.sendEvent('PLAY');

	document.getElementById(argId).style.borderColor = "#fff";
	document.getElementById(currentVid).style.borderColor = "#000";
	currentVid = argId;
	
}

function clearInput(e,o){
	if(o.firstTime){return}
	o.firstTime=true
	o.value=""
}
