document.observe('dom:loaded', function(event){
	$$('#menu_box ul.navigation li').each(function(cat){
		var btn_cat_point = cat.down('button');
		btn_cat_point.observe('click', toggleCategoryMenu);
	});
});

function toggleCategoryMenu(event){
	event.stop();
	var btn = event.element();
	var cat = event.findElement('li');
	var cat_child_list = cat.down('ul');
	btn.toggleClassName('active');
	if(btn.hasClassName('active')){
		if(cat_child_list){
			cat_child_list.visualEffect('BlindDown');
		}
	}else{
		if(cat_child_list){
			cat_child_list.visualEffect('BlindUp');
		}
	}
}

/**
 * 地図から探す で選択された条件で動画検索結果ページに遷移
 * @param selected_locations
 */
function searchByLocation(selected_locations){
	var location_ids = [];
	$R(1,3).each(function(idx){
		if(selected_locations[idx -1]['id']){
			location_ids.push(selected_locations[idx - 1]['id']);
		}
	});
	// 地図で選択された条件で検索画面に移動する
	location.href = '/material/searchResult.html?location=' + location_ids.pop();
}