function WBM_initPhotoGallery() {
	// slide gallery
	$('div.func-gallery2').galleryScroll({
		btPrev: 'a.prev',
		btNext: 'a.next',
		holderList: 'div.gallery-wrapper',
		scrollElParent: 'ul.gallery',
		scrollEl: 'ul.gallery li',
		slideNum: false,
		duration : 1250,
		step: false,
		circleSlide: true,
		funcOnclick: null
	});
	
	$('div.gallery-holder').slideShow({
		numElementLink:'ul.gallery li a',
		slideEl:'ul#main-gallery-pic-container li',
		linkNext:'a#next-btn',
		linkPrev:'a#prev-btn',
		autoSlideShow:false,
		switchTime:1250,
		duration:500
	});
}

function _updatePhotoGalleryText()
{
	var _text;
	
	_text = $("ul.gallery li.active img").attr("alt");
	
	$("#photo-gallery-text").html(_text);
}
function WBM_updatePhotoGalleryText()
{
	setTimeout("_updatePhotoGalleryText()", 200);
}


// compleate load
$(window).bind("load", function() {
	WBM_initPhotoGallery();
	WBM_updatePhotoGalleryText();
});
