/*FUNÇÃO SLIDE DESTAQUES*/
$(document).ready(function() {
	
    var b = 0;
    var c = 100;
    var d = 5000;
    var e = $("ul#destaques li");
    var f = e.size();
    if (f > 3) {
        function removeFirst() {
            b = $('ul#destaques li:first').html();
			
            $('ul#destaques li:first').animate({
                opacity: 0
            },
            c).slideUp(600, function() {
                $(this).remove()
            });
            addLast(b)
        }
        function addLast(a) {
            last = '<li style="display:none">' + a + '</li>';
            $('ul#destaques').append(last);
            $('ul#destaques li:last').animate({
                opacity: 1
            },
            c).fadeIn('slow')
        }
        interval = setInterval(removeFirst, d)
    }
	
	/*PARCEIROS*/
	$("#convenios").cycle({
		fx: "scrollRight",
		speed: 500,
		timeout: 4000,
		next: ".nextP",
		prev: ".backP",
		pause: 1
	});
	
});
