// メイン処理。
$(function(){

	// サムネイル画像のリンクにlightBoxを設定する。
	$('.lightbox').each(function(){
		var title = $(this).children('img').attr('alt');
		if (title == '') title = $(this).attr('title');
		$(this).lightBox({
			overlayBgColor: '#333',
			overlayOpacity: 0.6,
			imageLoading: '../../common/img/lightbox-ico-loading.gif',
			imageBtnClose: '../../common/img/lightbox-btn-close.gif',
			txtTitle: title,
			txtImage: 'リゾートホテルオリビアン小豆島'
		});
	});
});

