//selectboxでshopカテゴリを絞り込む機能
function narrow(SEL) {
	var list = document.getElementById('shoplist').getElementsByTagName('li');
	
	if(SEL.options[SEL.selectedIndex].value=='all'){
		for(var i=0;i<list.length;i++)
		list[i].style.display = '';
		return;
	}
	for(var i=1;i<SEL.options.length;i++){
		for(var i=0;i<list.length;i++) {
		list[i].style.display = 
			(list[i].className.indexOf(SEL.options[SEL.selectedIndex].value)>=0)?'':'none';
		}
	}
}
//selectboxのurlにジャンプ
function jump(obj) {
	var url = obj.options[obj.selectedIndex].value;
	if(url == "") {
	}
	if(url != "") {
		location.href = url;
	}
}
