$(document).ready(function(){
    $('#destaque div.geral ul').cycle({
	fx: 'fade',
	timeout: 10000
	});
    
    $('#institutos_internacionais div.institutos').scrollable({
        prev: '#institutos_internacionais a.prev',
        next: '#institutos_internacionais a.next',
        circular: true
    });
    
    $('#destaque p.sh_detalhes').click(function(){
        if ($(this).parent().css('right') == '-470px') {
            $(this).parent().hide().css({right:0})
            $(this).parent().show('slide', {direction:'right'});
            $(this).removeClass('show');
        }
        else {
            $(this).parent().hide('slide', {direction:'right'}, 500, function(){
                $(this).css({right:-470});
                $(this).show('slide', {direction:'right'}, 200);
            });
            $(this).addClass('show');
        }
    });
    
    if ($('#destaque div.cursos li').length > 1){
        $('#destaque div.cursos').scrollable({circular:true, prev:'', next:''}).autoscroll(10000).navigator();
    }
    
    $('#cursos div.destaques').scrollable({
        prev: '#cursos a.prev',
        next: '#cursos a.next'
    });
	
	/*$("#chat").overlay({
        mask: {
            color: '#000',
            loadSpeed: 200,
            opacity: 0.8
        },
        top: 150,
        closeOnClick: false,
        load: true
    });*/
});
