/**
 * @author adminlocal
 */
$(document).ready(function() {
		$("#enlaces ul:not(:first)").hide();
		$("#enlaces h1").click(function(){
			$("#enlaces ul:visible").slideUp("slow");
			$(this).next().slideDown("slow");
			return false;
		});
	});
