﻿$(function(){
	/* ロールオーバーによる画像入れ替え */
	$('.rollover').each(function(){
		// srcセット
		var rolloverSrc = $(this).attr('src').replace(/(\.gif|\.jpg|\.png)$/, "_on"+"$1");
		// イメージセット
		$(this).mouseover(function(){
			$(this).hide().next().show();
		})
		.clone().insertAfter(this).attr('src',rolloverSrc).hide().mouseout(function(){
			$(this).hide().prev().show();
		})
	})
	$('#navi li')
	  .mouseover(function(){
	    $(this).animate({opacity: 0.8}, 'fast');
	  })
	  .mouseout(function(){
	    $(this).animate({opacity: 1.0}, 'fast');
	  });
	$('.over')
	.mouseover(function(){
						$(this).animate({opacity: 0.7}, 'fast');
	})
	.mouseout(function(){
					   $(this).animate({opacity: 1.0}, 'fast');
					   })
	$('.rollover').each(function(){
		// srcセット
		var rolloverSrc = $(this).attr('src').replace(/(\.gif|\.jpg|\.png)$/, "_on"+"$1");
		// イメージセット
		$(this).mouseover(function(){
			$(this).hide().next().show();
		})
		.clone().insertAfter(this).attr('src',rolloverSrc).hide().mouseout(function(){
			$(this).hide().prev().show();
		})
	})
	
});