$(document).ready(function(){
	
	$(".boton_aviso_legal").click(function(){
		var cartel = $(".aviso_legal_cartel_principal");
		if(cartel.is(":visible"))
		{
			cartel.hide();
			$(this).html("Aviso Legal");
		}
		else
		{
			cartel.show();
			$(this).html("Cerrar");
		}
	});
	
	$(".boton_chiquito_aviso_legal").click(function(){
		var cartel = $(this).next();
		if(cartel.is(":visible"))
		{
			cartel.hide();
			$(this).html("Aviso Legal");
		}
		else
		{
			cartel.show();
			$(this).html("Cerrar");
		}
	});
	
});
