$(document).ready(function() {
	$('li.compartir_li').click(function() {;
		$("li.compartir_social").toggle();
		$("span.showit").toggle();
	});
	$('#main').click(function() {;
		$("li.compartir_social").hide();
		$("span.showit").hide();
	});
	$('span.todas').click(function() {;
		$(".lista-categorias").toggle('blind','slow');
		$(".lista-categorias2").hide();
	});
        $('span.todos').click(function() {;
		$(".lista-barrios").toggle('blind','slow');
		$(".lista-barrios2").hide();
	});
	$('span.todas2').click(function() {;
		$(".lista-categorias2").toggle('blind','slow');
	});
	
	$('.textarea').click(function() {
	$('.textarea').html('').css('height','100px').css('line-height','normal');
	});
	$(".textarea").focusout(function() {
	$('.textarea').html('&iquest;Qu&eacute; est&aacute;s pensando?').css('height','24px').css('line-height','24px');
	});

});

