$ = jQuery.noConflict();
$(function(){
	$('#get-recent-comments h3').html($('#titlefala').html());
	$('#footer ul').removeClass('menu')
	$('.pgTv .galeria a').click(function(){
		titulo = $(this).metadata().titulo;
		url = $(this).attr('href');
		imagem = $(this).metadata().imagem;
		descricao = $(this).metadata().descricao;
		video(url, imagem, titulo, descricao);
		Cufon.replace('h2');
		return false;
	})
	
	Cufon.replace('.versus span, span.versos',{ 
		fontFamily: 'Sans Culottes'
	});
	
	Cufon.replace('h3');
	Cufon.replace('.x');
	$.ajax({
		dataType: 'jsonp',
		url: 'http://gdata.youtube.com/feeds/api/videos?author=tvcorinthiansal&start-index=1&max-results=12&orderby=published&q=&alt=json',
		success: function(data){
			$(data.feed.entry).each(function() {
				var idVideo = this.link[0].href.replace('http://www.youtube.com/watch?v=','').replace('&feature=youtube_gdata','');
				$('.melhoresVideos .listVideos ul').append('<li><div class="imgPlay"><a href="/melhores-lances/?v=' + idVideo + '"><img border="0" width="31" height="31" style="border:0" src="/wp-content/themes/corinthians/imgs/pix.gif"></a></div><a href="/melhores-lances/?v=' + idVideo + '"><img width="146" height="139" src="' + this.media$group.media$thumbnail[0].url + '"></a><h5><a rel="player=swf; width=480; height=320;" href="/melhores-lances/?v=' + idVideo + '">' + this.title.$t + '</a></h5><br></li>');
			});
			$('.melhoresVideos .listVideos').append('<ul class="navVideos"><li><a href="javascript:void(0);" title="Anterior" id="btVdAnterior" class="anterior png disabled">Anterior</a></li><li><a href="javascript:void(0);" title="Próximo" id="btVdProximo" class="proximo png">Próximo</a></li></ul>');
			$('.melhoresVideos .listVideos #videos2').scrollable({
				size: 2,
				itens: 'ul',
				next: 'ul.navVideos #btVdProximo',
				prev: 'ul.navVideos #btVdAnterior'
			}).circular();
		}
	});
});


