﻿//ニュースタブ表示切替
function dispNews( newsid ){

	var liObj1 = document.getElementById("campaign");
	var liObj2 = document.getElementById("services");
	var liObj3 = document.getElementById("others");

	//タブ表示
	if( newsid == 1 ){
		liObj1.style.backgroundPosition = "0px -40px";
		liObj2.style.backgroundPosition = "-206px 3px";
		liObj3.style.backgroundPosition = "-407px 3px";
	}else if( newsid == 2 ){
		liObj1.style.backgroundPosition = "0px 3px";
		liObj2.style.backgroundPosition = "-206px -40px";
		liObj3.style.backgroundPosition = "-407px 3px";
	}else if( newsid == 3 ){
		liObj1.style.backgroundPosition = "0px 3px";
		liObj2.style.backgroundPosition = "-206px 3px";
		liObj3.style.backgroundPosition = "-407px -40px";
	}

	//内容表示
	document.getElementById( 'news_cur' ).innerHTML = document.getElementById( 'news' + newsid ).innerHTML;
}

