$(document).ready(function() {
	
	$('#videos li').click(function(){
		$(this).siblings().removeClass('current');
		$(this).addClass('current');
		
		var embedURL = $(this).find('.embed_url').attr('href');
		
		$('#videoplayer').fadeOut(400,function(){
			$(this).flash(
				{ height: 340, width: 600 },
				{ version: 8 },
				function(htmlOptions) {
					$this = $(this);
					htmlOptions.src = embedURL;
					$this.html($.fn.flash.transform(htmlOptions));
			});
		});
		$('#videoplayer').fadeIn(600);
		
	});
	
});
