$(document).ready(function() {
	$("ul.level5:empty").remove();
	$("ul.level4:empty").remove();
	$("ul.level3:empty").remove();
	$("ul.level2:empty").remove();
	$("ul#nav").find("li#l1").each(function(index){
		id = $(this).attr("class");
		//alert($(this).attr("class"));
		//alert(id);
		$(this).append($("li#"+id+" ul.level2"));
	});
	$("ul#nav li#l2 ul.mainlevel2 li").each(function(index){
		id = $(this).attr("class");
		//alert($(this).attr("class"));
		//alert(id);
		$(this).append($("li#"+id+" ul.level3"));
	});
	$("ul#nav").find("li").each(function(index){
		cid = $(this).attr("id");
		$(this).removeAttr("id");
		$(this).addClass(cid);
	});
	
	$("ul#nav").find("li.l1").each(function(index){
		height = $(this).find("a:first").height();
		if(height > 16){
			$(this).find("ul.level2").css("margin-top","-37px");
		}
	});
	$("ul#nav").find("li.l2").each(function(index){
		height = $(this).find("a:first").height();
		if(height > 16){
			$(this).find("ul.level2").css("margin-top","-37px");
		}
	});
	$("ul#navi_jump").remove();
});


