var movie_baseurl = "http://www.youtube.com/v/";
var movie_options = "&rel=1";
var movie_title_separator = ' -- ';

function playVideo(elem) {
	if (this != window) elem = this.href?this:this.parentNode;
	var href = elem.href;
	var mcode = href.substr(href.lastIndexOf("=")+1);
	var movie = movie_baseurl + mcode + movie_options;
	var texts = elem.firstChild.getAttribute('alt').split(movie_title_separator);
	$("#moreVideos li").removeClass("selected");
	$(elem).parent("li").addClass("selected");
	if(texts.length==2) $("#currentVideo").find("h4").html(texts[0]).end().find("p").html(texts[1]);
	var settings = {
		src: movie,
		id:  'movieobject',
		width: 320,
		height: 250,
		bgcolor: '#FFFFFF',
		wmode: "transparent"
	};
	$('#videoEmbed').flash(settings, {version: '8'})
	return false;
}
$(document).ready(function() {
	$("#moreVideos a").unbind('click').click(playVideo);
	playVideo($("#moreVideos a:eq(0)").get(0));
});