function initMenu() {
	$('.listacategorias ul').hide();
	$('.listacategorias ul:first').show();
	$('.listacategorias li a').click(
		function() {
		var checkElement = $(this).next();
			if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
		return false;
			}
	if((checkElement.is('ul')) && (!checkElement.is(':visible'))){
		$('.listacategorias ul:visible').slideUp('normal');
		checkElement.slideDown('normal');
		
		return false;
		
		}
	}
);
	
	
}
$(document).ready(function() {initMenu();});
