var estado = 0

$(document).ready(function (){
		 
		$("ul.capa").hide();
		 
		 $("div.mod_desplegable .link").click(function () {
			if(estado == 0)
			{
			$("ul.capa").hide();
			$(this).addClass('cerrar');			
			$("ul.capa").slideDown('slow');
			estado = 1;
			  return false;
			}
			else
			{
				$("ul.capa").slideUp('slow');
				$(this).removeClass('cerrar');
				estado = 0;
			    return false;
			}
});
		
	});
 

