
//-----------------------------------------------------------------------
//クリックでメニュー折りたたみ
//-----------------------------------------------------------------------

function show(inputData) {
	if(document.getElementById( "layer_" + inputData ) != null){
		var objID=document.getElementById( "layer_" + inputData );
	}else{
		return;	
	}
	//var buttonID=document.getElementById( "category_" + inputData );
	
	if(objID.className=='close') {
		objID.style.display='block';
		objID.className='open';
	}else{
		objID.style.display='none';
		objID.className='close';
	}
}

//-----------------------------------------------------------------------
//	ドキュメント(ページ)ロード時に関数を実行
//-----------------------------------------------------------------------


$(document).ready(function(){
	docURL = location.href;
	
	if(docURL.match("\/shirt\/")!=null){
		show(1);
	}if(docURL.match("\/sunsurf\/")!=null){
		show(2);
	}if(docURL.match("\/collect\/")!=null){
		show(3);
	}if(docURL.match("\/edition\/")!=null){
		show(4);
	}if(docURL.match("\/keoni\/")!=null){
		show(5);
	}if(docURL.match("\/john\/")!=null){
		show(6);
	}
	
	$("div.campaign table").each(function(){
		$("tr:odd",this).addClass("alt");
	});
});