// JavaScript Document

/** 
* changeMode 製品カテゴリの表示切替
* @param void
* @return void
*/
var ctg_mode = 'list';
function changeMode(obj){
	if(obj){
		if(ctg_mode == 'list'){
			ctg_mode = 'detail';
			document.getElementById('productList').style.display = 'none';
			document.getElementById('productDetail').style.display = 'block';
			document.getElementById('productBottom').style.display = 'block';
		}else{
			ctg_mode = 'list';
			document.getElementById('productDetail').style.display = 'none';
			document.getElementById('productBottom').style.display = 'none';
			document.getElementById('productList').style.display = 'block';
		}
	}
}

/** 
* selectCategory トピックカテゴリの選択
* @param void
* @return void
*/
function selectCategory(){
	document.forms['selCategory'].submit();
}
