var Geral = {
	__construct: function() {
		_this = Geral;
		$("input[type='text'],input[type='password'],textarea").resetDefaultValue();
		$("a.lightbox").lightBox();
		$("a.fancybox").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'inside',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Imagem <span class="quant-fancy"> ' + (currentIndex + 1) + '</span> de <span class="quant-fancy">' + currentArray.length + (title.length ? '</span> &nbsp; ' + title : '') + '</span>';
				}
			});
	}
}

$(document).ready(function(){
	Geral.__construct();
	
	$('#dropdown_content').hide();
	$('ul.princ li:eq(1) a, #dropdown_content').hover(function(){
		$('#dropdown_content').show();	
		
	},
	function(){
		$('#dropdown_content').hide();
		
	});
	
	$('#imagens-animacao').cycle({ 
		fx:'fade',
		timeout: 5000,
		next: '#nav-anigeral .seta-direita',
		prev: '#nav-anigeral .seta-esquerda',
		cleartypeNoBg: true	
	});

});