$(document).ready(function() {
	
	$(".child_top2").click(function() {
		var elem = $(this).next('UL');
		if(elem.css('display') == 'none') { 
			 $('.ddown').hide();
			 elem.show();
		}
		else {
			 elem.hide();
		}
	});
	
});
