$( document ).ready( function() {

	$( '.m-sel' ).each( function() {
		if( $( this ).parent().find('a').attr("id") != menu_now
		 && $( this ).parent().find('a').attr("id") != submenu_now ) {
			$( this ).animate( {
				opacity: 0.0,
				width  : 'hide',
				height : 'hide',
				top    : '+=12',
				left   : '+=54'
			}, 5 );
		}
	} );

	$( '.m-txt a' ).mouseover( function() {
		if( $( this ).attr("id") != menu_now
		 && $( this ).attr("id") != submenu_now ) {
			$( this ).parent().parent().children( '.m-sel' ).animate( {
				opacity: 1.0,
				width  : 'show',
				height : 'show',
				top    : '-=12',
				left   : '-=54'
			}, 500 );
		}
	} );

	$( '.m-txt a' ).mouseout( function() {
		if( $( this ).attr("id") != menu_now
		 && $( this ).attr("id") != submenu_now ) {
			$( this ).parent().parent().children( '.m-sel' ).animate( {
				opacity: 0.0,
				width  : 'hide',
				height : 'hide',
				top    : '+=12',
				left   : '+=54'
			}, 250 );
		}
	} );

} );

