/* ------------------------------ Initialize ------------------------------ */
$(function(){

// サイドバー　過去の研究会の開閉
$('#archives h3').click(function(){
	$('#archives ul').toggle('fast');
});

// 申し込み画面　ウィンドウ開く
$('.btn_subscription').click(function(){
	window.open(this.href, 'seig_subscription', 'width=800, height=700, menubar=no, toolbar=no, location=no, status=yes, resizable=yes, scrollbars=yes');
	return false;
});

// 申し込み画面を閉じる
$('link_close, .close').click(function(){
	window.close();
	return false;
});

$('#events #photos a').lightBox();

// 男子チーム／スケジュール
function send(){
	var params = $('#schedules form').serializeArray();// フォームの内容をシリアライズして送信
	$.ajax({
		type: "POST",
		dataType: "json",
		data: params,
		url: "/mens/schedule_table/",
		success: function(data){
			if (data.valid) {
				$('#schedules form').fadeOut('slow', function(){
					$('#schedules .padder').html(data.html);
				});
			} else {
				$('#schedules .error').show();
			}
		}
	});
	return false;
}
$('#schedules form').submit(send);

});

