$.validator.setDefaults({
	submitHandler: function() { 
		//alert("submit");
		form.submit();
	}
});

$(document).ready(function(){
	
	$("#open-variacoes").click(function() {
		if($(this).hasClass("ticker-opened")){
			$(this).removeClass("ticker-opened").addClass("ticker-closed");
			$("#frase-variacoes").removeClass("show").addClass("hide");
		} else {
			$(this).removeClass("ticker-closed").addClass("ticker-opened");
			$("#frase-variacoes").removeClass("hide").addClass("show");
		}
	});

	
});
