function TeamVideo()
{
	if(jQuery("#videos").length > 0)
	{
		var video = jQuery("a.miniatura:first").next();
		var legenda = video.next();
		jQuery("#player").html(
			'<object width="394" height="324">'+
			'	<param name="movie" value="http://www.youtube.com/v/'+video.val()+'&hl=pt-br&fs=1"></param>'+
			'	<param name="allowFullScreen" value="true"></param>'+
			'	<param name="allowscriptaccess" value="always"></param>'+
			'	<embed src="http://www.youtube.com/v/'+video.val()+'&hl=pt-br&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="394" height="324"></embed>'+
			'</object>'
		);
		
		jQuery("a.miniatura").click(function()
		{
			$("a.miniatura").removeClass("destacada");
			$(this).addClass("destacada");
			var video = jQuery(this).next();
			var legenda = video.next();
			jQuery("#player").html(
				'<object width="394" height="324">'+
				'	<param name="movie" value="http://www.youtube.com/v/'+video.val()+'&hl=pt-br&fs=1"></param>'+
				'	<param name="allowFullScreen" value="true"></param>'+
				'	<param name="allowscriptaccess" value="always"></param>'+
				'	<embed src="http://www.youtube.com/v/'+video.val()+'&hl=pt-br&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="394" height="324"></embed>'+
				'</object>'
			);
			jQuery("#titulo").html(jQuery(this).find("img:first").attr("alt"));
			jQuery("#legenda").html(unescape(legenda.val()));
		});
	}
}