jQuery(document).ready(function($) {
 

//tab1基礎処理
$("a.tab_1").live("mouseover",
		function(){
		//tab1マウスオーバon
		$("a.tab_1")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"});
});

$("a.tab_1").live("mouseout",
		//tab1マウスアウトoff
		function(){
		$("a.tab_1")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"});
});

//tab2基礎処理
$("a.tab_2").live("mouseover",
		function(){
		//tab2マウスオーバon
		$("a.tab_2")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
		.css({"border-bottom-width":"1px"})
		//.css({"border-bottom-color":"#FFF"});
});

$("a.tab_2").live("mouseout",
		function(){
		$("a.tab_2")
		//tab2マウスアウトoff
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"})
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-color":"#ABCF35"});
});

//tab3基礎処理
$("a.tab_3").live("mouseover",
		function(){
		//tab3マウスオーバon
		$("a.tab_3")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
		.css({"border-bottom-width":"1px"})
		//.css({"border-bottom-color":"#FFF"});
});

$("a.tab_3").live("mouseout",
		//tab3マウスアウトoff
		function(){
		$("a.tab_3")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"})
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-color":"#ABCF35"});
});

//tab4基礎処理
$("a.tab_4").live("mouseover",
		function(){
		//tab4マウスオーバon
		$("a.tab_4")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
		.css({"border-bottom-width":"1px"})
		//.css({"border-bottom-color":"#FFF"});
});

$("a.tab_4").live("mouseout",
		//tab4マウスアウトoff
		function(){
		$("a.tab_4")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"})
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-color":"#ABCF35"});
});

//tab5基礎処理
$("a.tab_5").live("mouseover",
		function(){
		//tab5マウスオーバon
		$("a.tab_5")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
		.css({"border-bottom-width":"1px"})
		//.css({"border-bottom-color":"#FFF"});
});

$("a.tab_5").live("mouseout",
		function(){
		//tab5マウスアウトoff
		$("a.tab_5")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"})
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-color":"#ABCF35"});
});

//tab1クリック
$("a.tab_1").live("click",
		function(){
		//tab1の背景on
		$("a.tab_1")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"});
		//tab2の背景off
		$("a.tab_2")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"});
		//tab3の背景off
		$("a.tab_3")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"});
		//tab4の背景off
		$("a.tab_4")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"});
		//tab5の背景off
		$("a.tab_5")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"});
		//tab1のボーダーoff
		$("a.tab_1")
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-style":"solid"})
		.css({"border-bottom-color":"#fff"});
		//tab2のボーダーon
		$("a.tab_2")
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-style":"solid"})
		.css({"border-bottom-color":"#ABCF35"});
		//tab3のボーダーon
		$("a.tab_3")
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-style":"solid"})
		.css({"border-bottom-color":"#ABCF35"});
		//tab4のボーダーon
		$("a.tab_4")
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-style":"solid"})
		.css({"border-bottom-color":"#ABCF35"});
		//tab5のボーダーon
		$("a.tab_5")
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-style":"solid"})
		.css({"border-bottom-color":"#ABCF35"});
		//tab1マウスアウトでon（現状維持）
		$("a.tab_1").live("mouseout",
			function(){
			//tab1の背景on
			$("a.tab_1")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
			.css({"border-bottom-width":"1px"})
			.css({"border-bottom-color":"#fff"});
			});
		//tab2マウスアウトでoff
		$("a.tab_2").live("mouseout",
			function(){
			//tab2の背景off
			$("a.tab_2")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"})
			.css({"border-bottom-width":"1px"})
			.css({"border-bottom-color":"#ABCF35"});
			});
		//tab3マウスアウトでoff
		$("a.tab_3").live("mouseout",
			function(){
			//tab3の背景off
			$("a.tab_3")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"})
			.css({"border-bottom-width":"1px"})
			.css({"border-bottom-color":"#ABCF35"});
			});
		//tab4マウスアウトでoff
		$("a.tab_4").live("mouseout",
			function(){
			//tab4の背景off
			$("a.tab_4")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"})
			.css({"border-bottom-width":"1px"})
			.css({"border-bottom-color":"#ABCF35"});
			});
		//tab5マウスアウトでoff
		$("a.tab_5").live("mouseout",
			function(){
			//tab5の背景off
			$("a.tab_5")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"})
			.css({"border-bottom-width":"1px"})
			.css({"border-bottom-color":"#ABCF35"});
			});
		//tab1マウスオーバーでon
		$("a.tab_1").live("mouseover",
			function(){
			//tab1の背景on
			$("a.tab_1")
			.css({"border-bottom-width":"1px"})
			.css({"border-bottom-color":"#fff"});
			});
		//tab2マウスオーバーでon
		$("a.tab_2").live("mouseover",
			function(){
			//tab2の背景on
			$("a.tab_2")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
			.css({"border-bottom-width":"0px"});
			});
		//tab3マウスオーバーでon
		$("a.tab_3").live("mouseover",
			function(){
			//tab3の背景on
			$("a.tab_3")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
			.css({"border-bottom-width":"0px"});
			});
		//tab4マウスオーバーでon
		$("a.tab_4").live("mouseover",
			function(){
			//tab4の背景on
			$("a.tab_4")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
			.css({"border-bottom-width":"0px"});
			});
		//tab5マウスオーバーでon
		$("a.tab_5").live("mouseover",
			function(){
			//tab5の背景on
			$("a.tab_5")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
			.css({"border-bottom-width":"0px"});
			});
		//tab_cont1表示
		$("div#tab_cont1")
		.css({"display":"block"});
		//tab_cont2非表示
		$("div#tab_cont2")
		.css({"display":"none"});
		//tab_cont3非表示
		$("div#tab_cont3")
		.css({"display":"none"});
		//tab_cont4非表示
		$("div#tab_cont4")
		.css({"display":"none"});
		//tab_cont5非表示
		$("div#tab_cont5")
		.css({"display":"none"});
});

//tab2クリック
$("a.tab_2").live("click",
function(){
		//tab2の背景on
		$("a.tab_2")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"});
		//tab1の背景off
		$("a.tab_1")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"});
		//tab3の背景off
		$("a.tab_3")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"});
		//tab4の背景off
		$("a.tab_4")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"});
		//tab5の背景off
		$("a.tab_5")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"});
		//tab1のボーダーon
		$("a.tab_1")
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-style":"solid"})
		.css({"border-bottom-color":"#ABCF35"});
		//tab2のボーダーoff
		$("a.tab_2")
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-style":"solid"})
		.css({"border-bottom-color":"#fff"});
		//tab3のボーダーon
		$("a.tab_3")
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-style":"solid"})
		.css({"border-bottom-color":"#ABCF35"});
		//tab4のボーダーon
		$("a.tab_4")
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-style":"solid"})
		.css({"border-bottom-color":"#ABCF35"});
		//tab5のボーダーon
		$("a.tab_5")
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-style":"solid"})
		.css({"border-bottom-color":"#ABCF35"});
		//tab2マウスアウトでon（現状維持）
		$("a.tab_2").live("mouseout",
			function(){
			//tab2の背景on
			$("a.tab_2")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
			.css({"border-bottom-width":"1px"})
			.css({"border-bottom-color":"#fff"});
			});
		//tab1マウスアウトでoff
		$("a.tab_1").live("mouseout",
			function(){
			//tab1の背景off
			$("a.tab_1")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"})
			.css({"border-bottom-width":"1px"})
			.css({"border-bottom-color":"#ABCF35"});
			});
		//tab3マウスアウトでoff
		$("a.tab_3").live("mouseout",
			function(){
			//tab3の背景off
			$("a.tab_3")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"})
			.css({"border-bottom-width":"1px"})
			.css({"border-bottom-color":"#ABCF35"});
			});
		//tab4マウスアウトでoff
		$("a.tab_4").live("mouseout",
			function(){
			//tab4の背景off
			$("a.tab_4")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"})
			.css({"border-bottom-width":"1px"})
			.css({"border-bottom-color":"#ABCF35"});
			});
		//tab5マウスアウトでoff
		$("a.tab_5").live("mouseout",
			function(){
			//tab5の背景off
			$("a.tab_5")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"})
			.css({"border-bottom-width":"1px"})
			.css({"border-bottom-color":"#ABCF35"});
			});
		//tab1マウスオーバーでon
		$("a.tab_1").live("mouseover",
			function(){
			//tab1の背景on
			$("a.tab_1")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
			.css({"border-bottom-width":"0px"});
			});
		//tab2マウスオーバーでon
		$("a.tab_2").live("mouseover",
			function(){
			//tab2の背景on
			$("a.tab_2")
			.css({"border-bottom-width":"1px"})
			.css({"border-bottom-color":"#fff"});
			});
		//tab3マウスオーバーでon
		$("a.tab_3").live("mouseover",
			function(){
			//tab3の背景on
			$("a.tab_3")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
			.css({"border-bottom-width":"0px"});
			});
		//tab4マウスオーバーでon
		$("a.tab_4").live("mouseover",
			function(){
			//tab4の背景on
			$("a.tab_4")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
			.css({"border-bottom-width":"0px"});
			});
		//tab5マウスオーバーでon
		$("a.tab_5").live("mouseover",
			function(){
			//tab5の背景on
			$("a.tab_5")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
			.css({"border-bottom-width":"0px"});
			});
		//tab_cont1非表示
		$("div#tab_cont1")
		.css({"display":"none"});
		//tab_cont2表示
		$("div#tab_cont2")
		.css({"display":"block"});
		//tab_cont3非表示
		$("div#tab_cont3")
		.css({"display":"none"});
		//tab_cont4非表示
		$("div#tab_cont4")
		.css({"display":"none"});
		//tab_cont5非表示
		$("div#tab_cont5")
		.css({"display":"none"});
});

//tab3クリック
$("a.tab_3").live("click",
		function(){
		//tab3の背景on
		$("a.tab_3")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"});
		//tab2の背景off
		$("a.tab_2")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"});
		//tab1の背景off
		$("a.tab_1")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"});
		//tab4の背景off
		$("a.tab_4")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"});
		//tab5の背景off
		$("a.tab_5")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"});
		//tab1のボーダーon
		$("a.tab_1")
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-style":"solid"})
		.css({"border-bottom-color":"#ABCF35"});
		//tab2のボーダーon
		$("a.tab_2")
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-style":"solid"})
		.css({"border-bottom-color":"#ABCF35"});
		//tab3のボーダーoff
		$("a.tab_3")
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-style":"solid"})
		.css({"border-bottom-color":"#fff"});
		//tab4のボーダーon
		$("a.tab_4")
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-style":"solid"})
		.css({"border-bottom-color":"#ABCF35"});
		//tab5のボーダーon
		$("a.tab_5")
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-style":"solid"})
		.css({"border-bottom-color":"#ABCF35"});
		//tab3マウスアウトでon（現状維持）
		$("a.tab_3").live("mouseout",
			function(){
			//tab3の背景on
			$("a.tab_3")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
			.css({"border-bottom-width":"1px"})
			.css({"border-bottom-color":"#fff"});
			});
		//tab2マウスアウトでoff
		$("a.tab_2").live("mouseout",
			function(){
			//tab2の背景off
			$("a.tab_2")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"})
			.css({"border-bottom-width":"1px"})
			.css({"border-bottom-color":"#ABCF35"});
			});
		//tab1マウスアウトでoff
		$("a.tab_1").live("mouseout",
			function(){
			//tab1の背景off
			$("a.tab_1")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"})
			.css({"border-bottom-width":"1px"})
			.css({"border-bottom-color":"#ABCF35"});
			});
		//tab4マウスアウトでoff
		$("a.tab_4").live("mouseout",
			function(){
			//tab4の背景off
			$("a.tab_4")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"})
			.css({"border-bottom-width":"1px"})
			.css({"border-bottom-color":"#ABCF35"});
			});
		//tab5マウスアウトでoff
		$("a.tab_5").live("mouseout",
			function(){
			//tab5の背景off
			$("a.tab_5")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"})
			.css({"border-bottom-width":"1px"})
			.css({"border-bottom-color":"#ABCF35"});
			});
		//tab2マウスオーバーでon
		$("a.tab_2").live("mouseover",
			function(){
			//tab2の背景on
			$("a.tab_2")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
			.css({"border-bottom-width":"0px"});
			});
		//tab1マウスオーバーでon
		$("a.tab_1").live("mouseover",
			function(){
			//tab1の背景on
			$("a.tab_1")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
			.css({"border-bottom-width":"0px"});
			});
		//tab3マウスオーバーでon
		$("a.tab_3").live("mouseover",
			function(){
			//tab3の背景on
			$("a.tab_3")
			.css({"border-bottom-width":"1px"})
			.css({"border-bottom-color":"#fff"});
			});
		//tab4マウスオーバーでon
		$("a.tab_4").live("mouseover",
			function(){
			//tab4の背景on
			$("a.tab_4")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
			.css({"border-bottom-width":"0px"});
			});
		//tab5マウスオーバーでon
		$("a.tab_5").live("mouseover",
			function(){
			//tab5の背景on
			$("a.tab_5")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
			.css({"border-bottom-width":"0px"});
			});
		//tab_cont1非表示
		$("div#tab_cont1")
		.css({"display":"none"});
		//tab_cont2非表示
		$("div#tab_cont2")
		.css({"display":"none"});
		//tab_cont3表示
		$("div#tab_cont3")
		.css({"display":"block"});
		//tab_cont4非表示
		$("div#tab_cont4")
		.css({"display":"none"});
		//tab_cont5非表示
		$("div#tab_cont5")
		.css({"display":"none"});
});

//tab4クリック
$("a.tab_4").live("click",
		function(){
		//tab4の背景on
		$("a.tab_4")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"});
		//tab2の背景off
		$("a.tab_2")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"});
		//tab3の背景off
		$("a.tab_3")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"});
		//tab1の背景off
		$("a.tab_1")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"});
		//tab5の背景off
		$("a.tab_5")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"});
		//tab1のボーダーon
		$("a.tab_1")
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-style":"solid"})
		.css({"border-bottom-color":"#ABCF35"});
		//tab2のボーダーon
		$("a.tab_2")
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-style":"solid"})
		.css({"border-bottom-color":"#ABCF35"});
		//tab3のボーダーon
		$("a.tab_3")
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-style":"solid"})
		.css({"border-bottom-color":"#ABCF35"});
		//tab4のボーダーoff
		$("a.tab_4")
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-style":"solid"})
		.css({"border-bottom-color":"#fff"});
		//tab5のボーダーon
		$("a.tab_5")
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-style":"solid"})
		.css({"border-bottom-color":"#ABCF35"});
		//tab4マウスアウトでon（現状維持）
		$("a.tab_4").live("mouseout",
			function(){
			//tab4の背景on
			$("a.tab_4")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
			.css({"border-bottom-width":"1px"})
			.css({"border-bottom-color":"#fff"});
			});
		//tab2マウスアウトでoff
		$("a.tab_2").live("mouseout",
			function(){
			//tab2の背景off
			$("a.tab_2")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"})
			.css({"border-bottom-width":"1px"})
			.css({"border-bottom-color":"#ABCF35"});
			});
		//tab3マウスアウトでoff
		$("a.tab_3").live("mouseout",
			function(){
			//tab3の背景off
			$("a.tab_3")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"})
			.css({"border-bottom-width":"1px"})
			.css({"border-bottom-color":"#ABCF35"});
			});
		//tab1マウスアウトでoff
		$("a.tab_1").live("mouseout",
			function(){
			//tab1の背景off
			$("a.tab_1")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"})
			.css({"border-bottom-width":"1px"})
			.css({"border-bottom-color":"#ABCF35"});
			});
		//tab5マウスアウトでoff
		$("a.tab_5").live("mouseout",
			function(){
			//tab5の背景off
			$("a.tab_5")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"})
			.css({"border-bottom-width":"1px"})
			.css({"border-bottom-color":"#ABCF35"});
			});
		//tab2マウスオーバーでon
		$("a.tab_2").live("mouseover",
			function(){
			//tab2の背景on
			$("a.tab_2")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
			.css({"border-bottom-width":"0px"});
			});
		//tab3マウスオーバーでon
		$("a.tab_3").live("mouseover",
			function(){
			//tab3の背景on
			$("a.tab_3")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
			.css({"border-bottom-width":"0px"});
			});
		//tab4マウスオーバーでon
		$("a.tab_4").live("mouseover",
			function(){
			//tab4の背景on
			$("a.tab_4")
			.css({"border-bottom-width":"1px"})
			.css({"border-bottom-color":"#fff"});
			});
		//tab1マウスオーバーでon
		$("a.tab_1").live("mouseover",
			function(){
			//tab1の背景on
			$("a.tab_1")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
			.css({"border-bottom-width":"0px"});
			});
		//tab5マウスオーバーでon
		$("a.tab_5").live("mouseover",
			function(){
			//tab5の背景on
			$("a.tab_5")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
			.css({"border-bottom-width":"0px"});
			});
		//tab_cont1非表示
		$("div#tab_cont1")
		.css({"display":"none"});
		//tab_cont2非表示
		$("div#tab_cont2")
		.css({"display":"none"});
		//tab_cont3非表示
		$("div#tab_cont3")
		.css({"display":"none"});
		//tab_cont4表示
		$("div#tab_cont4")
		.css({"display":"block"});
		//tab_cont5非表示
		$("div#tab_cont5")
		.css({"display":"none"});
});

//tab5クリック
$("a.tab_5").live("click",
		function(){
		//tab1の背景on
		$("a.tab_5")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"});
		//tab2の背景off
		$("a.tab_2")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"});
		//tab3の背景off
		$("a.tab_3")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"});
		//tab4の背景off
		$("a.tab_4")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"});
		//tab1の背景off
		$("a.tab_1")
		.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"});
		//tab1のボーダーon
		$("a.tab_1")
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-style":"solid"})
		.css({"border-bottom-color":"#ABCF35"});
		//tab2のボーダーon
		$("a.tab_2")
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-style":"solid"})
		.css({"border-bottom-color":"#ABCF35"});
		//tab3のボーダーon
		$("a.tab_3")
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-style":"solid"})
		.css({"border-bottom-color":"#ABCF35"});
		//tab4のボーダーon
		$("a.tab_4")
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-style":"solid"})
		.css({"border-bottom-color":"#ABCF35"});
		//tab5のボーダーoff
		$("a.tab_5")
		.css({"border-bottom-width":"1px"})
		.css({"border-bottom-style":"solid"})
		.css({"border-bottom-color":"#fff"});
		//tab5マウスアウトでon（現状維持）
		$("a.tab_5").live("mouseout",
			function(){
			//tab5の背景on
			$("a.tab_5")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
			.css({"border-bottom-width":"1px"})
			.css({"border-bottom-color":"#fff"});
			});
		//tab2マウスアウトでoff
		$("a.tab_2").live("mouseout",
			function(){
			//tab2の背景off
			$("a.tab_2")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"})
			.css({"border-bottom-color":"#ABCF35"});
			});
		//tab3マウスアウトでoff
		$("a.tab_3").live("mouseout",
			function(){
			//tab3の背景off
			$("a.tab_3")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"})
			.css({"border-bottom-color":"#ABCF35"});
			});
		//tab4マウスアウトでoff
		$("a.tab_4").live("mouseout",
			function(){
			//tab4の背景off
			$("a.tab_4")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"})
			.css({"border-bottom-color":"#ABCF35"});
			});
		//tab1マウスアウトでoff
		$("a.tab_1").live("mouseout",
			function(){
			//tab1の背景off
			$("a.tab_1")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_off.jpg) no-repeat"})
			.css({"border-bottom-color":"#ABCF35"});
			});
		//tab2マウスオーバーでon
		$("a.tab_2").live("mouseover",
			function(){
			//tab2の背景on
			$("a.tab_2")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
			.css({"border-bottom-width":"0px"});
			});
		//tab3マウスオーバーでon
		$("a.tab_3").live("mouseover",
			function(){
			//tab3の背景on
			$("a.tab_3")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
			.css({"border-bottom-width":"0px"});
			});
		//tab4マウスオーバーでon
		$("a.tab_4").live("mouseover",
			function(){
			//tab4の背景on
			$("a.tab_4")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
			.css({"border-bottom-width":"0px"});
			});
		//tab5マウスオーバーでon
		$("a.tab_5").live("mouseover",
			function(){
			//tab5の背景on
			$("a.tab_5")
			.css({"border-bottom-width":"1px"})
			.css({"border-bottom-color":"#fff"});
			});
		//tab1マウスオーバーでon
		$("a.tab_1").live("mouseover",
			function(){
			//tab1の背景on
			$("a.tab_1")
			.css({"background":"url(http://seescore.co.jp/wp/wp-content/themes/plainscape/img/tab_on.jpg) no-repeat"})
			.css({"border-bottom-width":"0px"});
			});
		//tab_cont1非表示
		$("div#tab_cont1")
		.css({"display":"none"});
		//tab_cont2非表示
		$("div#tab_cont2")
		.css({"display":"none"});
		//tab_cont3非表示
		$("div#tab_cont3")
		.css({"display":"none"});
		//tab_cont4非表示
		$("div#tab_cont4")
		.css({"display":"none"});
		//tab_cont5表示
		$("div#tab_cont5")
		.css({"display":"block"});
});






 
	$('#sees_mess_4b a.a1').mouseenter(function(){
		$('#sees_mess_4b a.a1').css('color','#F00');
	});
	$('#sees_mess_4b a.a1').mouseleave(function(){
		$('#sees_mess_4b a.a1').css('color','#000');
	});
	$('#sees_mess_4b a.a2').mouseenter(function(){
		$('#sees_mess_4b a.a2').css('color','#F00');
	});
	$('#sees_mess_4b a.a2').mouseleave(function(){
		$('#sees_mess_4b a.a2').css('color','#000');
	});
	$('#sees_mess_4b a.a3').mouseenter(function(){
		$('#sees_mess_4b a.a3').css('color','#F00');
	});
	$('#sees_mess_4b a.a3').mouseleave(function(){
		$('#sees_mess_4b a.a3').css('color','#000');
	});
	$('#sees_mess_4b a.a4').mouseenter(function(){
		$('#sees_mess_4b a.a4').css('color','#F00');
	});
	$('#sees_mess_4b a.a4').mouseleave(function(){
		$('#sees_mess_4b a.a4').css('color','#000');
	});



});
