$(function(){
	//初期動作
	
	$(".tab > div").hide();
	$(".tab > div:first").show();
	var thisSrc =$(".tab_list li a img:first").attr("src");
	var thisSrc = thisSrc.replace("_on","_act");
	var thisSrc = thisSrc.replace("_off","_act");
	$(".tab_list li a img:first").attr("src",thisSrc);


	//クリック時
$(".tab_list li a").click(function(){
		$(".tab > div").hide();
		var myID=$(this).attr("href");
		$(myID).fadeIn();
		$(".tab_list li a img").each(function(){
		var mySrc=$(this).attr("src").replace("_act","_off");
		$(this).attr("src",mySrc)
		});
		var thisSrc =$(this).children("img").attr("src");
		var thisSrc = thisSrc.replace("_on","_act");
		var thisSrc = thisSrc.replace("_off","_act");
		$(this).children("img").attr("src",thisSrc);
		return false;
	});

$(".tab_list li a img").hover(
		function(){
			var mysrc=$(this).attr("src").replace("_off","_on");
			$(this).attr("src",mysrc);
		},
		function(){
			var mysrc=$(this).attr("src").replace("_on","_off");
			$(this).attr("src",mysrc);
		}
	);
});




