var Geral = {
	__construct: function() {
		_this = Geral;
		$("input[type='text'],input[type='password'],textarea").resetDefaultValue();
		$("a.lightbox").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();
							
	$('.bt-busca').click(function(){
	
		$valor = $('#buscanoblog').val(); 
		if($valor!='buscar no blog')
		{
			location.href='busca,'+$valor;
		}
		
	});
	

	

});
