	$(document).ready(
		function(){
			$(".lv2>li").hover(
				function () {
					$(this).children("ul").show();
					$(this).css("backgroundColor","#637EB8");
				},
				function () {
					$(this).children("ul").hide();
					$(this).css("backgroundColor","#005da3");
				}
			);
			$(".lv1>li").hover(
				function () {
					$(this).children("ul").show();
				},
				function () {
					$(this).children("ul").hide();
				}
			);
		}
	);	