$('.cycle').cycle({
        fx:'fade',
        pause:1
});

$('.cycle img').cycle({
        cleartype: true, 
        cleartypeNoBg: true
});

$('.caixa-index-especifica-cycle').cycle({
        fx:'fade',
        pause:1
});


function slidefancy(){  
    $('.slide  a[rel="galeria"]').fancybox({
        'transitionIn'		: 'fade',
        'transitionOut'		: 'fade',
        'titlePosition' 	: 'over',
        'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
            return '<span id="fancybox-title-over">' + title +'</span>';
        }
        
    });
}

$(".scrollable").scrollable({
    size: 5,
    onSeek: function() {
        slidefancy();
    }

}).mousewheel().circular().navigator().autoscroll({
    steps: 5,
    interval: 3000,
    autopause: true
   
});

slidefancy();

$('.enquete-votar').click(function(){
	    var boolValid = false;
	    $('#enquete input:radio').each(function() {
	            if ( $(this).is(':checked') ) {
	                    boolValid = true;
	            }
	    });
	    if(!boolValid){
	        alert('Escolha uma alternativa');
	    }
	    else{
	        $('#enquete form').submit();
	    }
});

$('.popup-fechar').click(function(){

	$('#popup').css({
		display:'none'
	});
});

$('.popup-fechar').css({
	'margin-left': $('.popup-img').width() -20,
	'margin-top': '-20px'
});	
