var FaleConosco = {

	abreFechaCategoria: function(event) {
		var $h2 = $(this).parent(), $ul = $h2.next("ul");
		$h2.add($ul).toggleClass("aberto");
		$h2.siblings("h2, ul").not($ul).removeClass("aberto");
		return false; 
	}, 
	
	checar: function() {
		var oLabel = $('#fs-cliente > label')
		if ($('#fs-cliente input:checked').val() == '0') {
			oLabel.hide(); 
			oLabel.removeClass('atencao'); 
			oLabel.find('img').remove(); 
		} else
			oLabel.show(); 
		return true; 
	},
	
	iniciar: function() {
	
		$("#telefones h2").wrapInner('<a href="#" />').find("a").bind("click", FaleConosco.abreFechaCategoria);

		$('#fs-cliente input[type=radio]').bind('click', FaleConosco.checar);
		FaleConosco.checar(); 

		// Abre chat em pop-up
		$("#chat a").bind("click", Popup.eventFeatures("width=460,height=600,top=50,left=" + parseInt((screen.width - 460) / 2))); 

	}
	
}

$(FaleConosco.iniciar); 


