$(document).ready(function(){
	$('span.avisoDesativado').hide();
	$('.bt-entrar').click(function(e){
		e.preventDefault();								   
		$('span.avisoDesativado').show();	
	});

        /* toogle*/
        $('.resolucao').hide();
	$('.showResolucao').click(function() {
		$(this).next().toggle('slow');
		$('.resolucao').css('background', '#E6FFD3');
		return false;
	}).next().hide();
	
	/* carrossel */
    $("#box-destaque").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		visible: 1,
		speed: 1000,
		auto: 10000
    });

$("#various1").fancybox({
	'width' : '75%',
	'height' : '75%',
	'autoScale' : false,
	'transitionIn' : 'none',
	'transitionOut' : 'none',
	'type' : 'iframe'
}); 
	
	$("a[rel=group01]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
	$("a[rel=group02]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
});
