/***************************************
 * (c)ウェブシステムズ
 * http://www.websystems.jp/
 ***************************************/

$(function(){
	// opened number
	openedN = 0;

	// side category
	$('a.side_cat_btn').each(function(i){

		if ($($('.side_cat_box')[i]).css('display') != "none") {
			openedN = i+1;
		}

		$(this).click(function(){
			$(this).blur();

			if (openedN && openedN-1 != i) {
				$($('.side_cat_box')[openedN-1]).hide();
			}
			$($('.side_cat_box')[i]).toggle();
			openedN = i+1;

			return false;
		});
	});

    $('#search').submit(function(){
		if($('#s_word').val() == "") {
			alert('キーワードを入力してください。');
			return false;
		}
    });
});

