//WP_news
  function newsTab(sel){
	$('#eleNews .tabIn').hide();
	$(sel).show();
	
	$('#news01').html("<a href=\"javascript:newsTab('#news');\"><img src=\"../_img/news_tab01.gif\" width=\"47\" height=\"23\" alt=\"最新\" class=\"swap\" /></a>");
    $('#news02').html("<a href=\"javascript:newsTab('#av');\"><img src=\"../_img/news_tab02.gif\" width=\"45\" height=\"23\" alt=\"AV\" class=\"swap\" /></a>");
	$('#news03').html("<a href=\"javascript:newsTab('#pc');\"><img src=\"../_img/news_tab03.gif\" width=\"45\" height=\"23\" alt=\"PC\" class=\"swap\" /></a>");
	$('#news04').html("<a href=\"javascript:newsTab('#cm');\"><img src=\"../_img/news_tab04.gif\" width=\"45\" height=\"23\" alt=\"カメラ\" class=\"swap\" /></a>");
	$('#news05').html("<a href=\"javascript:newsTab('#gm');\"><img src=\"../_img/news_tab05.gif\" width=\"45\" height=\"23\" alt=\"ゲーム\" class=\"swap\" /></a>");
	$('#news06').html("<a href=\"javascript:newsTab('#ot');\"><img src=\"../_img/news_tab06.gif\" width=\"48\" height=\"23\" alt=\"その他\" class=\"swap\" /></a>");

	if(sel == "#news"){
		$('#news01').html("<a href=\"javascript:newsTab('#news');\"><img src=\"../_img/news_tab01_on.gif\" width=\"47\" height=\"23\" alt=\"最新\" /></a>")
	}else if(sel == "#av"){
		$('#news02').html("<a href=\"javascript:newsTab('#av');\"><img src=\"../_img/news_tab02_on.gif\" width=\"45\" height=\"23\" alt=\"AV\" /></a>")	
	}else if(sel == "#pc"){
		$('#news03').html("<a href=\"javascript:newsTab('#pc');\"><img src=\"../_img/news_tab03_on.gif\" width=\"45\" height=\"23\" alt=\"PC\" /></a>")	
	}else if(sel == "#cm"){
		$('#news04').html("<a href=\"javascript:newsTab('#cm');\"><img src=\"../_img/news_tab04_on.gif\" width=\"45\" height=\"23\" alt=\"カメラ\" /></a>")	
	}else if(sel == "#gm"){
		$('#news05').html("<a href=\"javascript:newsTab('#gm');\"><img src=\"../_img/news_tab05_on.gif\" width=\"45\" height=\"23\" alt=\"ゲーム\" /></a>")	
	}else if(sel == "#ot"){
		$('#news06').html("<a href=\"javascript:newsTab('#ot');\"><img src=\"../_img/news_tab06_on.gif\" width=\"48\" height=\"23\" alt=\"その他\" /></a>")	
	}
	initRollovers();	
}