var playerPaused = false;
var tituloNoticia;
var resumoNoticia;

$(function(){
		   
	tituloNoticia = $("#tituloNoticia");
	resumoNoticia = $("#resumoNoticia");
		   
	 $("#player ul").cycle({
		fx: 'fade',
		speed: 700,
		timeout: 5000,
		prev : '#prevPlayer',
		next : '#nextPlayer',
		before: function(a, p) { 
		
					var vlink = $("#n"+p.id);
					var href = vlink.attr("href");
					var alt = vlink.attr("title");
					
					tituloNoticia.html('<a href="'+ href +'">'+ p.title +'</a>'),
					resumoNoticia.html('<a href="'+ href +'">'+ alt +'</a>')
			    },
		pager : '#playerPagination'
	 });
	 
	 $('#pausePlayer').click(function() { 
									  
		if(playerPaused == false) {
			
			$('#player ul').cycle('pause'); 
			playerPaused = true;
			
		} else {
			
			$('#player ul').cycle('resume'); 
			playerPaused = false;
		}
	});
  }) 



