$(function(){

/*
	$("#ContatoNome").focus(function() {
		if ( $(this).val() == "nome"){
			$(this).val('');
		}
	});


	$("#ContatoEmail").focus(function() {
		if ( $(this).val() == "e-mail"){
			$(this).val('');
		}
	});


	$("#ContatoMensagem").focus(function() {
		if ( $(this).val() == "mensagem"){
			$(this).val('');
		}
	});
*/

	//Timer do div aviso
	$(function(){
		$.timer(4000, function (timer) {
			if(!$("#aviso").hasClass("visible")){
				$("#aviso").hide("slow");
			}
			timer.stop();
		});
	});



	$("#consultaNumero").attr('value', 'NÚMERO DA OS');
	$("#consultaNumero").focus(function() {
		if ( $(this).val() == "NÚMERO DA OS"){
			$(this).val('');
		}
	});

});
