/*
jQuery(function() {
	jQuery('.mapa:first>li>ul').hide();
	
	jQuery('.mapa:first>li:not(.mapa li li)').each(function() {
		if (jQuery(this).find('ul').length > 0) {
			jQuery(this).find('a:first:not(.expandir), span').after(' <a href="#" class="expandir">[+]</a>').parent().find('.expandir').bind('click', function(e) {
				if (jQuery(this).text() == "[+]") {
					jQuery(this).text('[-]');
				}
				else {
					jQuery(this).text('[+]');
				}
				jQuery(this).parent().find('ul:first').toggle('slow');
				e.preventDefault();
			});
		}	
	});
});
*/

jQuery(document).ready(function() {
	jQuery('#mapa-web ul ul').prev('span,a').after(' <a class="action" href="#">[Plegar]</a>');
	jQuery('#mapa-web .action').bind('click', function(event) {
		jQuery(this).text(jQuery(this).text()=='[Desplegar]'?'[Plegar]':'[Desplegar]');
		jQuery(this).next('ul').slideToggle('fast');
		event.preventDefault();
	});
});
