/*
フェードイン、フェードアウトjs
http://web.hirot.jp/archives/000164.php
を改変
*/

$(function(){
						   
/*
	//読込時画像全てをフェード
	$(function(){
		$("#top img").fadeTo(500, 0.5);
		$("#top img").fadeTo(500, 1.0);
	});

	//読込時コンテンツエリアをフェード
	$(function(){
		$(".section *").fadeTo(500, 0);
		$(".section *").fadeTo(500, 1.0);
	});

	//マウスオーバー時リンクをフェード
	$("a").hover(
	function(){
		$(this).fadeTo(300, 0.65);
	},
	function(){
		$(this).fadeTo(300, 1.0);
	});
*/

	//ヘッダ用
	$("#header a img").hover(
	function(){
		$(this).fadeTo(300, 0.7);
	},
	function(){
		$(this).fadeTo(300, 1.0);
	});

	//トップページ用
	$(".artist_section a img").hover(
	function(){
		$(this).fadeTo(300, 0.7);
	},
	function(){
		$(this).fadeTo(300, 1.0);
	});

	//サイドナビ用
	$(".side_nav li a img").hover(
	function(){
		$(this).fadeTo(300, 0);
	},
	function(){
		$(this).fadeTo(300, 1.0);
	});

	//バナー用
	$("a.bnr img").hover(
	function(){
		$(this).fadeTo(300, 0.7);
	},
	function(){
		$(this).fadeTo(300, 1.0);
	});


});

