// JavaScript Document
<!--
$(function(){
	
	//画像のロールオーバー
	$(".rollover img").mouseover(function(){
										  
		$(this).attr("src",$(this).attr("src").replace(/^(.+)_off(\.[a-z]+)$/,"$1_on$2"));
		
	}).mouseout(function(){
		
		$(this).attr("src",$(this).attr("src").replace(/^(.+)_on(\.[a-z]+)$/,"$1_off$2"));
		
	}).each(function(){
		
		$("<img>").attr("src",$(this).attr("src").replace(/^(.+)_off(\.[a-z]+)$/,"$1_on$2"));
		
	});
	
	$('#navi > li').hover(function(){
	
		$(this).children('div.none:not(:animated)').slideDown(400);
	
	}, function(){
		
		$(this).children('div.none').slideUp(400);
		
	});
	
})
-->
