$(document).ready(function(){
		
	$("#menu_02 .section").click(function(){
		if( $(this).attr("class").indexOf("mnu_active") >= 0 ){
			return;
		}
		if( $(this).parent('div').attr("class") !== "menu_03" )
		{
			$("#menu_02 .sub_section").hide('slow');
			$(".mnu_active").removeClass("mnu_active");
			if( $(this).next().attr("class") == "sub_section" )
			{
				$(this).addClass("mnu_active");
				$(this).next().toggle('slow');
				return false;
			}
		}
	}).next('.sub_section').hide();
	
		
	$(".menu_03 .section").click(function(){
		if( $(this).attr("class").indexOf("mnu_active") >= 0 ){
			return;
		}
		$(".menu_03 .sub_section").hide('slow');
		$(".mnu_active").removeClass("mnu_active");
		if( $(this).next().attr("class") == "sub_section" )
		{
			$(this).addClass("mnu_active");
			$(this).next().toggle('slow');
			return false;
		}
	}).next('.sub_section').hide();
	
});