
/*----  navメニュー  ----*/

function mainmenu(){
$(" #nav ul ").css({display: "none"}); // Opera Fix
$(" #nav li").hover(function(){
		$(this).find('ul:first').css({visibility: "visible",display: "none"}).show(400);
		},function(){
		$(this).find('ul:first').css({visibility: "hidden"});
		});
}

 
 
 $(document).ready(function(){					
	mainmenu();
});


/*----  右メニュー  ----*/

$(function(){
			
		/* ◯class = 'boxTitle' をクリックしたら実行 */
		$('.boxTitle').click(function(){
			/* ◯次の要素を出現させる */
			$(this).next().animate(
				{ height: "toggle", opacity: "toggle" }
				,"slow"
			);
			/* $this.next().toggle('slow'); でも同じ */						
		}).next().hide(); /* ◯ページ読み込み時はかくしておく */
		
	});
	
	
/*----  ロールオーバー  ----*/
$(function(){
     $('img').hover(function(){
        $(this).attr('src', $(this).attr('src').replace('_off', '_on'));
          }, function(){
             if (!$(this).hasClass('currentPage')) {
             $(this).attr('src', $(this).attr('src').replace('_on', '_off'));
        }
   });
});
