function showMovie(nm){
	var embed = '';
	embed += '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="720" height="445" id="videoPlayer" align="middle">';
	embed += '<param name="allowScriptAccess" value="sameDomain" />';
	embed += '<param name="allowFullScreen" value="false" />';
	embed += '<param name="movie" value="videoPlayer.swf" />';
	embed += '<param name="quality" value="high" />';
	embed += '<param name="bgcolor" value="#404041" />';
	embed += '<param name="flashvars" value="moviename='+nm+'" />';
	embed += '<embed src="videoPlayer.swf" quality="high" flashvars="moviename='+nm+'" bgcolor="#404041" width="720" height="445" name="videoPlayer" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
	embed += '</object>';

	
	
	
	document.getElementById('vPlayer').style.display = 'block';
	document.getElementById('vPlayer').innerHTML = embed;
	$("#reel_list").css('visibility','hidden');
}

function hideMovie(){
	document.getElementById('vPlayer').style.display = 'none';
	document.getElementById('vPlayer').innerHTML = '';
	$("#reel_list").css('visibility','visible');
}

function raceOver(){
	if(document.getElementById('race')){
		var race =  document.getElementById('race');
		var racelinks = race.getElementsByTagName('li');
		for(i=0;i<racelinks.length;i++){
			if(racelinks[i].title){
			racelinks[i].style.cursor = 'pointer';
			racelinks[i].onmouseover = function(){ this.style.backgroundColor = '#f89522';}
			racelinks[i].onmouseout = function(){ this.style.backgroundColor = '#222';}
			racelinks[i].onclick = function(){ window.open(this.title,'BB',"");}
			}
		}
	}
}

window.onload = function(){ raceOver();}