$(document).ready(function() {
	$('input:text').focus(function() {
		if ($(this).val() == $(this).attr("title")) {
			$(this).val("");
			$(this).bind("blur", function() {
				if ($(this).val() == '') {
					$(this).val($(this).attr("title"));
				}
			});
		}
	});
	
	$(".divBoxPerguntas a.btPerguntas").click(function(e) {
		$(this).parent().next().slideToggle();
		e.preventDefault();
	});
	
	$("#formContato").validate({
		errorContainer: "#divBoxErro"
	});
});