// JavaScript Document
//utf-8;


/*---------------------------------
ボタンのマウスオーバー処理(フェード1)
---------------------------------*/
$(document).ready(function(){
				
	$("img[src*='_off'],input[src*='_off']").each( function() {

		var src = $(this).attr("src");
		src = src.slice(0,src.lastIndexOf(".")).replace(/_off$/i,"_on")+src.slice(src.lastIndexOf("."));
		
		$(this).css({"vertical-align":"baseline"});
		
		$(this).parent().css({
			"background-repeat":"no-repeat",
			"background-image":"url("+src+")",
			"background-position":"0 0",
			"display":"inline-block",
			"vertical-align":"baseline"
		});
		
	});
	
	
/*---------------------------------
サイドナビのマウスオーバー
---------------------------------*/
							 												 
$(".side_navi a").addClass("alpha_ov");

		
/*---------------------------------
ボタンのマウスオーバー処理(フェード2)
---------------------------------*/
	
	$("img[src*='_off'],input[src*='_off'],.fade_ov").not('.current').hover(
		function(){
			$(this).stop().animate({"opacity":0});
		},
		function(){
			$(this).stop().animate({"opacity":1});
		}
	);

});

/*---------------------------------
ボタンのマウスオーバー処理(透明)
---------------------------------*/
$(function(){
	
	//ボタンのマウスオーバー処理
	$(".alpha_ov").hover(
	function () {
		$(this).stop().animate({"opacity":0.5});
	},
	function () {
		$(this).stop().animate({"opacity":1});
	});
	
});








