$(function() {
	//tabs on start page navi
	$("#start .start .navi .tabs a").click(function() {
		var this_a = $(this);
		var this_ul = $("#start .start .navi ul." + $(this).attr("rel"));
		
		// show/hide
		$("#start .start .navi ul").each(function() {
			if($(this).css("display") != "none" && $(this_a).attr("class") != "on") {
				$(this).fadeOut(500, function() {
					$(this_ul).fadeIn();
				});
			} //end if
		});
		
		
		// on/off
		$("#start .start .navi .tabs a").removeClass("on");
		$(this).addClass("on");
		
		return false;
	});
	
	//subnavigation
	$("#nav > ul > li > a").click(function() {
		var ul_flag = $(this).parent("li").children("ul").length;
		
		if(ul_flag) {
			$(this).parent("li").children("ul").slideToggle();
			$(this).parent("li").toggleClass("on");
			
			return false;
		} //end if
	});
});
