$(function(){
	var _gallery = $('#gallery');
	_gallery.galleryScroll();
	_gallery.find('li a').click(function(){
		var _href = $(this).attr('href');
		if(_href) {
			var _this = $(this);
			if(_this.parents('.slider-box').find('.image img').attr('src')!=_href) {
				$(this).parents('.holder').find('.image img').fadeOut(500);
				setTimeout(function(){
					_this.parents('.holder').find('.image img').attr('src',_href);
					_this.parents('.holder').find('.image img').fadeIn(500);
				},500);
			}
		}
		return false;
	});
});