$(document).ready(function(){
	
	
	$('#navigation li').click(function(){
		$(this).children().show();
	});
	
	
});
