$().ready(function(){
	$('#naviMain a:not(.active),#naviBranch a:not(.active)').hover(
		function (){
			$('#naviMain a.active,#naviBranch a.active').css({borderBottomWidth:'0px'});
		},
		function (){
			$('#naviMain a.active,#naviBranch a.active').css({borderBottomWidth:'5px'});
		}
	)
});

