$(function() {  
	$("#gallery").scrollable({
		horizontal: true,
		size: 1,
		items: "#gallery-items",
		prev: "#galleryBox .navi_prev",
		next: "#galleryBox .navi_next",
		navi: "#galleryBox ul.navi",
		onSeek: scrollComplete
	});  

	// アンカー指定
	/*
	var hash = location.hash.slice(1);
	if( hash ){
		$("#scrollable").scrollable().setPage(hash-1);
	}
	*/
	/******************
	* 画像がクリックされた
	*/
	// 現在のアクティブを格納
	var __galleryActive = undefined;
	
	$(".galleryBox a").each(
		function(i){
			$(this).click( function(){
				// アクティブをクリックしたら無視
				if( __galleryActive == this ){ return false; }
				
				// 画像表示
				$('#galleryLarge-image').html( '<img src="'+ this.href +'">' );
				$('#galleryLarge-image img').hide();
				$('#galleryLarge-image img').fadeIn( 500 );
				
				// テキスト表示
				$('#galleryLarge-comment').html( this.title );
				
				// ボタン状態変更
				$(__galleryActive).removeClass( 'galleryActive' );
				$(this).addClass( 'galleryActive' );
				__galleryActive = this;
				
				return false;
			});
		}
	);
//	alert(999);

});  

/********************
* スクロール完了
*/
function scrollComplete(){
	var index = $("#gallery").scrollable().getIndex();
	jQRadioButton.setIndex( "gallery", index );
}

