var $selected = '';

$(function() {
	var id = 'menu';
	
	

	var i = 0;
	$('#' + id + '>ul').find('ul').each(function() {
	
		$(this).attr('menu-id', i++);
		
		$(this).parent().children('a').click(function(e) {
			e.preventDefault();
						
			if( $selected != '' ) {				
				if( $selected.parent('ul').attr('menu-id') == $(this).parent().parent('ul').attr('menu-id') ) {				
					$selected.children('ul').hide();
				} else {
					if( $selected.children('ul').attr('menu-id') != $(this).parent().parent('ul').attr('menu-id') ) {
						//alert( $(this).parent().parent('ul').attr('menu-id') + ' - ' + $selected.parent('ul').attr('menu-id') );
						
						var $aux = $selected.parent('ul');
						
						while( $aux.attr('menu-id') != $(this).parent().parent('ul').attr('menu-id') ) {
							//alert( $aux.attr('menu-id') );
							$aux = $aux.parents('ul');
						}
						
						$aux.children().find('ul').hide();
					}
					/*
					
					
					*/
				}				
			} 
			
			$selected = $(this).parent();

			$selected.addClass('selected');
			$selected.children('ul').show();
		});
	});
});
