$(document).ready(function(){
	/*
	CSS TWEEKS
	*/
	$('#latest .info:first-child').show();
	$('#dotdotdot li:first-child a').addClass('sel');
	$('#itemslist .items:first-child').addClass('prepend-top');
	$('#itemslist .items:last-child').css({'background':'none','padding-bottom':'0','margin-bottom':'0'});
	
	/*
	SETUP LATEST VIDEOS
	*/
	var latest=[],latest_act=0;
	$('#latest .info').each(function(){
		latest.push([$(this).find('.video').attr('movie'),$(this).find('.video').attr('poster'),$(this).find('h1 a').attr('href')]);
	});
	var latest_total=latest.length-1;
	jwplayer('video').setup({
		'flashplayer':'/jwplayer/player.swf','id':'video','width':'590','height':'332','stretching':'uniform','bufferlength':'5','skin':'/jwplayer/day66/day66.xml','controlbar':'over',
		'file':latest[latest_act][0],'image':'/pic/'+latest[latest_act][1],
		events:{
			onComplete:function(){latest_act++;latest_info(true)},
			onPlay:function(){$.post('/php/updateviews.php',{w:'1',perm:latest[latest_act][2]})}
		}
	});
	$('#latest .arrow').click(function(){
		if($(this).hasClass('next')){latest_act++;if(latest_act > latest_total) latest_act = 0}
		else{latest_act--;if(latest_act < 0) latest_act = latest_total}
		latest_info(false);
		$('#dotdotdot li a').removeClass('sel');
		$('#dotdotdot li:eq('+latest_act+') a').addClass('sel');
		return false;
	});	
	$('#latest .info').each(function(val){
	  $.getJSON('http://graph.facebook.com/?id=http://www.tvfatima.com'+$(this).find('h1 a').attr('href')+'&callback=?',function(json){
			cm = (json.comments > 1) ? json.comments+' Comentários' : json.comments+' Comentário';
			if(cm == 'undefined Comentário') cm = 'Sem comentários';
			nth = val+1;
			$('#latest .info:nth-child('+nth+') .comments').html(cm);
	  })
	});
	$('#dotdotdot li').click(function(){
		var dot = $(this).index();
		if(latest_act != dot){
			$('#dotdotdot li a').removeClass('sel');
			$(this).find('a').addClass('sel');
			latest_act = dot;
			latest_info(false);
		}
		return false;
	});
	/*
	END- SETUP LATEST VIDEOS
	*/
	
	function latest_info(play){
		jwplayer('video').setup({
			'flashplayer':'/jwplayer/player.swf','id':'video','width':'590','height':'332','stretching':'uniform','bufferlength':'5','skin':'/jwplayer/day66/day66.xml','controlbar':'over',
			'file':latest[latest_act][0],'image':'/pic/'+latest[latest_act][1],'autostart':play,
			events:{onComplete:function(){
				latest_act++;
				if(latest_act <= latest_total) latest_info(true);
			}}
		});
		$('#dotdotdot li a').removeClass('sel');
		$('#dotdotdot li:eq('+latest_act+') a').addClass('sel');
		nth = latest_act+1;
		$('#latest .info:visible').fadeOut(700,function(){
			$('#latest .info:nth-child('+nth+')').fadeIn(700);
		});
	}
	
});
