/**
 * @author Rafael Peruggia Souza
 */

var Ferramentas = function(){
	this.id_form_erro = "#form_comunicar_erro";
	this.classe_botao_erro = ".comunicar_erro";
	this.response_erro = "#response_erro";
	$(this.classe_botao_erro).click(this.toggle);
	$(this.id_form_erro+" .submit").click(this.submit);
	// Formatação monetária
	$(".campo_monetario").priceFormat({
		prefix: '',
		thousandsSeparator: '.',
		centsSeparator: ',', 
	});
}
Ferramentas.prototype.toggle = function(e){
	$(ferramentas.id_form_erro).slideToggle(500);
	e.preventDefault();
}
Ferramentas.prototype.submit = function(e){
	Forms.submit(ferramentas.id_form_erro.replace("#",""),ferramentas.response_erro.replace("#",""));
	e.preventDefault();
}

