/**
 * サイト内で使用のJS各設定
 * 
 * ★スムーズスクロール
 * jquery.page-scroller-308.js
 * 
 * ◆fancybox
 * jquery.fancybox-1.3.1.js
 * jquery.fancybox-1.3.1.css
 * 
**/

// ●ランダムヘッダ画像 枚数(2枚)を表す数字のみ変更
$(function(){
	var A = Math.floor(2*Math.random());
	$('#container').addClass('bd'+A);
});

// ★id="top"無しでスムーズスクロール
virtualTop = 0;

// ◆fancyboxのタイトル部分
$(document).ready(function() {
	$("a[rel=images_group]").fancybox({
	  'titlePosition'   : 'over',
	  'titleFormat'     : function(title, currentArray, currentIndex, currentOpts) {
	    return '<span id="fancybox-title-over"> ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
	  }
	});
});

