/* config */
$(function() {
	// add class
	$('li:last-child').addClass('last');	//全てのli要素の最後に
	$('dd:last-child').addClass('last');	//全てのdd要素の最後に
	$('.panel:last-child').addClass('last');	//panelクラスの最後に
	
	//$('table tr > *:first-child').addClass('first');	//のtd要素の最初に
	//$('table td:odd').addClass('odd');	//のtd要素の最初に
	$("tr:nth-child(odd)").addClass('odd');
 $("tr:nth-child(even)").addClass('even');
	
	
	//$("a[href$='.html']").addClass("link-icon"); //link用
	$("a[href$='.pdf']").addClass("pdf-icon"); //icon_pdf用
	$("a[href$='.doc']").addClass("word-icon"); //word用
	$("a[href$='.ppt']").addClass("ppt-icon"); //powerpoint用
	
	// 「九州の経済について」のメニューのトグル
	
$("ul.gnNavi01Ul li").children("ul").css("display","none");

$("ul.gnNavi01Ul li a.current").siblings().css("display","block");
$("a.current").parents("ul.ulbock").css("display","block");
	
	//	$("this").children("ul").css("display","block");
		
//});
});


/* 検索窓 */
function cText(obj){
if(obj.value==obj.defaultValue){
obj.value="";
obj.style.color="#000";
}
}

function sText(obj){
if(obj.value==""){
obj.value=obj.defaultValue;
obj.style.color="#999";
}
}
