//Glow設定
$(document).ready(function() {
	$('#navi li,.glow').addGlow({
		 textColor: '#fff', //マウスオーバー色
		 haloColor: '#fff', //光源色
		 radius: 20 //光源半径
	});
});


//lightBox設定
$(function() {
	$('#gallery a').lightBox();
});


//フォーム入力チェック
function form_check(f) {

if (f.number.value == "") {
    alert("数量が未記入です");
    return false;
	} else {
    return true ;
	}
}
