$(function () {

	$('.acionar').click(function () {
		
		var img = $(this);	
		var obj = img.parent().next();
			
		if (obj.is(':hidden')) {
			obj.show();
			img.attr('src', 'imagens/recolhe.gif');
		}
		else {
			obj.hide();
			img.attr('src', 'imagens/expande.gif');
		}
	
	});

	$('#pesqDominio').click(function () {
		if ($('#pesqSuporte').val().length <= 2) {
			return false;
		}
	});



	$('#telefone').change(function () {
    	$('#restelefone').html($(this).val());
    });

});
