$(function() {
	$( '#navi-box' )
		.mouseover(
			function(){
				$( '#subnavi-box' ).animate( { opacity: 'show', height: 'show' }, 'normal' );
			}
		)
	;
	$( '#subnavi-box p a' )
		.mouseup(
			function(){
				$( '#subnavi-box' ).css( 'display', 'none' );
			}
		)
		.attr( 'href', 'javascript:;' )
	;
});