//javasciprt common

FadeSpeed = 100;

$(function(){
	//左側のメニューボタンの初期化
	setTimeout(function(){//処理が重くならないように、10ms後で実行する
		$("#leftMenu01,#leftMenu02,#leftMenu03,#leftMenu04,#leftMenu05,#leftMenu06,#leftMenu07").each(function(){
			//imgタグの画像を透明
			$(this).fadeTo(0, 0);
			//imgタグの画像をON画像に変更
			$(this).attr("src", $(this).attr("src").replace("_off", "_on"));
			//ページが表示されるときは、フェードがかかってないので、一瞬ON画像が表示されてしまう。
			//これを防ぐために、imgタグの画像をOFF画像でhtmlを作成しておいて、ページが表示されたあとで
			//ON画像に変更する。
		});
	}, 10);
	//更新履歴を挿入する。処理が重くならないように10ms後で実行する。
	setTimeout(function(){
		$("#updateContents,#updateContents2").load("./update_contents.html"), 20
	});

	//ボタンマウスオーバー処理
	$("#leftMenu01,#leftMenu02,#leftMenu03,#leftMenu04,#leftMenu05,#leftMenu06,#leftMenu07").hover(function(){
		$(this).animate({"opacity":"1"}, FadeSpeed, "easeOutQuad");
				//.parent().animate({left:"+=4"}, FadeSpeed, "easeOutQuad");
	},function(){
		$(this).animate({"opacity" : "0"}, FadeSpeed, "easeOutQuad");
				//.parent().animate({left:"-=4"}, FadeSpeed, "easeOutQuad");
	});

	//リンク３
	$(".link3").hover(function(){
		$(this).find("a").css({color:"#ffffff",backgroundColor:"#E87D09"});
		$(this).animate({marginLeft:"-=5"},FadeSpeed);
	},function(){
		$(this).find("a").css({color:"",backgroundColor:""});
		$(this).animate({marginLeft:"+=5"},FadeSpeed);
	});


});
