$(document).ready(function(){
	$("a").focus(function(event){
		this.blur();
	 });
 });


function playAC(){
		var s1 = new SWFObject("js/mediaplayer/player.swf","ply","512","288","9","#000000");
		s1.addParam("allowfullscreen","true");
		s1.addParam("allowscriptaccess","always");
		s1.addParam("flashvars","autostart=true&file=/flash/Abbie_Trailer_MedQuality_Flash8_400kbps_512x288.flv");//&image=http://www.dumbbunnyproductions.com/12-2008/images/abbie_cancelled_click.jpg
		s1.write("ACVideo");

		$("#ACStill").addClass('showVideo');
}

function playVideo( id ){


		var title = videos[id].title;
		var desc = videos[id].desc;
		var swf = videos[id].swf;
		var vid = new SWFObject("js/mediaplayer/player.swf","ply","320","240","9","#000000");
		vid.addParam("allowfullscreen","true");
		vid.addParam("allowscriptaccess","always");
		vid.addParam("flashvars","autostart=true&file=/flash/"+swf+".flv");
		vid.write("VideoContainer");

		$("#VideoContainer").addClass('showVideo');
		$('#MusicVideosLogoContainer').addClass('invisible');
		$('#SpotsLogoContainer').addClass('invisible');
}

var player = null; 
function playerReady(thePlayer) { player = window.document[thePlayer.id]; addListeners(); }

function addListeners() {
	if (player) { 
		player.addModelListener("STATE", "stateListener");
	}else {
		setTimeout("addListeners()",100);
	}
}

function stateListener(obj) { //IDLE, BUFFERING, PLAYING, PAUSED, COMPLETED
	currentState = obj.newstate; 
	previousState = obj.oldstate; 

/*
	var tmp = document.getElementById("stat");
	if (tmp) { 
		tmp.innerHTML = "current state: " + currentState + 
		"<br>previous state: " + previousState; 
	}
*/
	if ((currentState == "COMPLETED")&&(previousState == "PLAYING")) {
		$("#VideoContainer").html('').removeClass('showVideo');
		$('#MusicVideosLogoContainer').removeClass('invisible');
		$('#SpotsLogoContainer').removeClass('invisible');
		$("#ACStill #ACVideo").html('');
		$("#ACStill").removeClass('showVideo');
	}
}
