﻿// HideMenu
$(document).ready(function(){
		$("ul.event-list li:nth-child(4)").addClass("hide-list");
		$("ul.event-list li:nth-child(5)").addClass("hide-list");
  $('.hide-list').css("display","none");
		$('.list-open img + img').css("display","none");
  $('.list-open').click(function(){
    // 引数には開閉する速度を指定します
    $('.hide-list').slideToggle('slow');
				$('.list-open img').toggle();
  });
});


// Lightbox
$(function() {
		$('#lightbox a').lightBox();
});
$(function() {
		$('#lightbox2 a').lightBox();
});
$(function() {
		$('#lightbox3 a').lightBox();
});
$(function() {
		$('#lightbox4 a').lightBox();
});
$(function() {
		$('#lightbox5 a').lightBox();
});
$(function() {
		$('#lightbox area').lightBox();
});
$(function() {
		$('#lightbox2 area').lightBox();
});

// AutoHeight
// お客様プロフィール箇所の高さ揃え
jQuery(function($){
  $(".prof-photo").autoHeight();
});
// 2カラムリンク体裁の高さ揃え（I-12, I-13）
jQuery(function($){
  $(".col02 .col-link dt").autoHeight();
});
jQuery(function($){
  $(".col02 .col-link dd").autoHeight();
});

// 3カラムリンク体裁の高さ揃え（I-15）
jQuery(function($){
  $(".col03 .col-link dt").autoHeight();
});
jQuery(function($){
  $(".col03 .col-link dd").autoHeight();
});
// ボタンリンク（小幅）の高さ揃え（B-12）
jQuery(function($){
  $(".btn-box .col-btn .link-text").autoHeight();
});

// ongoing flash link
function openWin() {
	window.open('/ongoing/index.html', 'ongoingWin', 'width=800, height=600, menubar=no, toolbar=no, scrollbars=no');
}
