/*
======== table of content. =================================

Description: side_navi mouse hover effect
Update: 2010/06/17-
Author: Japan Electronic Industrial Arts Co.Ltd.
        http://jeia.co.jp/

============================================================
*/

new function() {
	
	var naviSelector = '#side_navi';
	var notSelector = '.index, .selected';
	var minWidth = 210;
	var maxWidth = 225;
	var time = 300;
	
	
	if ( typeof jQuery == 'undefined' ) {
		return;
	}
	
	$(document).ready( function() {
		init();
	});
	
	/**
	 * 初期化
	 */
	function init() {
		
		if ( $( naviSelector ).length > 0 ) {
			
			$( naviSelector ).find( 'li' ).not( notSelector ).children( 'a' ).each( function() {
				$(this).hover( onOver, onOut );
			});
		}
	}
	
	/**
	 * マウスオーバー
	 */
	function onOver( _e ) {
		$(this).parent().animate({
			'width': maxWidth
		}, time );
	}
	
	/**
	 * マウスアウト
	 */
	function onOut( _e ) {
		$(this).parent().stop().width( minWidth );
	}
}

