// JavaScript Document

$(document).ready(function() 
	{
		$('.menu').each(function() {
			$(this).bind("click", toggle);
		});
	}
);

function toggle() {
	
	var id = 'submenu_' + this.id;	
	var subId = String('#submenu ' + id);
	
	if (id != null) {			
		$(subId).each(function(){ 								
			
			if (id == this.id){ 
				//alert('showing');
				$(this).show();
				console.log('Showing: ', this);
				
			} else { 			
				//alert('hiding');					
				$(this).hide(); 
				console.log('Hide: ', this);
			}
			// eof if
		});
	}
}