$(function()
{
	
	
	
	
	$('.GalleryThumbs ul').jcarousel({ vertical: true, scroll: 4, visible: 4 });
	//$('.GalleryText').jScrollPane({showArrows:true, scrollbarWidth: 13, arrowSize: 15});
	$('.GalleryView:first').show();
	$('.GalleryThumbs img').click(function(ev)
	{
		var id = $(this).attr('rel');
		$('.GalleryView').fadeOut();
		$('#'+id).fadeIn();
	});
	$('.GalleryView a').lightBox({
		overlayOpacity: .6,
		imageLoading: '/includes/css/images/lightbox-ico-loading.gif',
		imageBtnPrev: '/includes/css/images/lightbox-btn-prev.gif',
		imageBtnNext: '/includes/css/images/lightbox-btn-next.gif',
		imageBtnClose: '/includes/css/images/lightbox-btn-close.gif',
		imageBlank: '/includes/css/images/lightbox-blank.gif'
	});
});


