// JavaScript Document

//新着タブ切換え

function newChange(i) {
		var new_txt1 = document.getElementById('new_txt1');
		var new_txt2 = document.getElementById('new_txt2');
		var new_txt3 = document.getElementById('new_txt3');
		var new_txt4 = document.getElementById('new_txt4');
		var tab1 = document.getElementById('tab1');
		var tab2 = document.getElementById('tab2');
		var tab3 = document.getElementById('tab3');
		var tab4 = document.getElementById('tab4');
		var tab_a1 = document.getElementById('tab_a1');
		var tab_a2 = document.getElementById('tab_a2');
		var tab_a3 = document.getElementById('tab_a3');
		var tab_a4 = document.getElementById('tab_a4');
	if(i == "1") {
		new_txt1.style.display = "block";
		new_txt2.style.display = "none";
		new_txt3.style.display = "none";
		new_txt4.style.display = "none";
		tab_a1.style.borderBottom = "1px solid #fff";
		tab_a2.style.borderBottom = "1px solid #9ebdea";
		tab_a3.style.borderBottom = "1px solid #9ebdea";
		tab_a4.style.borderBottom = "1px solid #9ebdea";
		tab1.style.background = "url(/img/index/tab_e.jpg) repeat-x left center";
		tab2.style.background = "url(/img/index/tab.jpg) repeat-x left center";
		tab3.style.background = "url(/img/index/tab.jpg) repeat-x left center";
		tab4.style.background = "url(/img/index/tab.jpg) repeat-x left center";
		tab1.style.fontWeight = "bold";
		tab2.style.fontWeight = "normal";
		tab3.style.fontWeight = "normal";
		tab4.style.fontWeight = "normal";
	}else if(i == "2") {
		new_txt1.style.display = "none";
		new_txt2.style.display = "block";
		new_txt3.style.display = "none";
		new_txt4.style.display = "none";
		tab_a1.style.borderBottom = "1px solid #9ebdea";
		tab_a2.style.borderBottom = "1px solid #fff";
		tab_a3.style.borderBottom = "1px solid #9ebdea";
		tab_a4.style.borderBottom = "1px solid #9ebdea";
		tab1.style.background = "url(/img/index/tab.jpg) repeat-x left center";
		tab2.style.background = "url(/img/index/tab_e.jpg) repeat-x left center";
		tab3.style.background = "url(/img/index/tab.jpg) repeat-x left center";
		tab4.style.background = "url(/img/index/tab.jpg) repeat-x left center";
		tab1.style.fontWeight = "normal";
		tab2.style.fontWeight = "bold";
		tab3.style.fontWeight = "normal";
		tab4.style.fontWeight = "normal";
	}else if(i == "3") {
		new_txt1.style.display = "none";
		new_txt2.style.display = "none";
		new_txt3.style.display = "block";
		new_txt4.style.display = "none";
		tab_a1.style.borderBottom = "1px solid #9ebdea";
		tab_a2.style.borderBottom = "1px solid #9ebdea";
		tab_a3.style.borderBottom = "1px solid #fff";
		tab_a4.style.borderBottom = "1px solid #9ebdea";
		tab1.style.background = "url(/img/index/tab.jpg) repeat-x left center";
		tab2.style.background = "url(/img/index/tab.jpg) repeat-x left center";
		tab3.style.background = "url(/img/index/tab_e.jpg) repeat-x left center";
		tab4.style.background = "url(/img/index/tab.jpg) repeat-x left center";
		tab1.style.fontWeight = "normal";
		tab2.style.fontWeight = "normal";
		tab3.style.fontWeight = "bold";
		tab4.style.fontWeight = "normal";
	}else if(i == "4") {
		new_txt1.style.display = "none";
		new_txt2.style.display = "none";
		new_txt3.style.display = "none";
		new_txt4.style.display = "block";
		tab_a1.style.borderBottom = "1px solid #9ebdea";
		tab_a2.style.borderBottom = "1px solid #9ebdea";
		tab_a3.style.borderBottom = "1px solid #9ebdea";
		tab_a4.style.borderBottom = "1px solid #fff";
		tab1.style.background = "url(/img/index/tab.jpg) repeat-x left center";
		tab2.style.background = "url(/img/index/tab.jpg) repeat-x left center";
		tab3.style.background = "url(/img/index/tab.jpg) repeat-x left center";
		tab4.style.background = "url(/img/index/tab_e.jpg) repeat-x left center";
		tab1.style.fontWeight = "normal";
		tab2.style.fontWeight = "normal";
		tab3.style.fontWeight = "normal";
		tab4.style.fontWeight = "bold";
	}
}
