function theRotator() {
	$('#featured p').css({opacity: 0.0});
	$('#featured p:first').css({opacity: 1.0});
	setInterval('rotate()',5000);
}
function rotate() {	
	var current = ($('#featured p.show')?  $('#featured p.show') : $('#featured p:first'));
	var next = ((current.next().length) ? ((current.next().hasClass('show')) ? $('#featured p:first') :current.next()) : $('#featured p:first'));	
	next.css({opacity: 0.0})
	.addClass('show')
	.animate({opacity: 1.0}, 1000);
	current.animate({opacity: 0.0}, 1000)
	.removeClass('show');
}


$(document).ready(function() {
	//Cufon.replace('h2', {
	//	hover: true
	//});
	
	$('#sidebar .clipes p:eq(1)').addClass('first');
	$('#sidebar .clipes p:eq(2)').addClass('second');
	
	
	
	$('.scroll').jScrollPane();
	
});

jQuery(window).load(function(){

	theRotator();

});


//eventos agenda 65
//contato 66
