$(document).ready(function() {

	// Abrir e fechar o box de informacoes
	$('.openclose').click(function() {
		$("#sobre").slideUp("slow");
		$.cookie('txtinfo', 'fechado');
	});
	var janela = $.cookie('txtinfo');
		if (janela == 'fechado') {
			$("#sobre").hide();
			$('.openclose').click(function() {
				$("#sobre").slideDown("slow");
				$.cookie('txtinfo', 'aberto');
			});
		};
		if (janela == 'aberto') {
			$("#sobre").show();
		};
		
	// Pesquisa: Apaga valor ao digitar
	// Contato: Apaga valor do campo Outros ao digitar	
	$('.inputpesq[type="text"], #txtOutros[type="text"]').focus(function() {
		if (this.value == this.defaultValue){  
			this.value = '';  
		}  
		if(this.value != this.defaultValue){  
			this.select();  
		}
	});
	$('.inputpesq[type="text"], #txtOutros[type="text"]').blur(function() {
	if ($.trim(this.value) == ''){
		this.value = (this.defaultValue ? this.defaultValue : '');
	}
	});

	// Contato: CSS do menu drop down
	$("#txtAssunto").selectbox({debug: true});

	// Contato: Revela campo Outros
	$("#txtAssunto_input_outros").click(function() {
		$("#outrosDiv").slideDown("slow");
		$("#txtOutros").fadeIn("slow");
	});

	// Contato: Oculta campo Outros
	$("#txtAssunto_input_sugestao, #txtAssunto_input_critica, #txtAssunto_input_reclamacao").click(function() {
		$("#txtOutros").fadeOut("slow");
		$("#outrosDiv").slideUp("slow");
	});

});