(function(){jQuery(document).ready(function(){
	jQuery('ul.gallery').wrap('<div id="ctGallery">');

	if( jQuery('#ctGallery ul.gallery .active').length == 0 )
	{
		jQuery('#ctGallery ul.gallery li:first-child').addClass('active');
	}
	
	var ActiveImage = jQuery('#ctGallery ul.gallery .active img');
	jQuery('#ctGallery ul.gallery').before('<img id="ctGalleryMain" border="0" src="' + ActiveImage.attr("src") + '"alt="' + ActiveImage.attr("alt") + '" />');
	
	var CTStaffGalleryMainImage = jQuery('#ctGallery #ctGalleryMain');
	
	CTStaffGalleryMainImage.click(function(){
		var CurImage = jQuery('#ctGallery ul.gallery .active');
		var NextImage = CurImage.is(':last-child') ? CurImage.siblings(':first-child') : CurImage.next();
		
		CurImage.removeClass('active');
		NextImage.addClass('active');
		
		CTStaffGalleryMainImage.attr({
			'src': NextImage.children('img').attr('src'),
			'alt': NextImage.children('img').attr('alt')
		});
		
		return false;
	});
	
	jQuery('#ctGallery ul.gallery li').click(function() {
		var CurImage = jQuery('#ctGallery ul.gallery .active');
		var NextImage = jQuery(this);
		
		CurImage.removeClass('active');
		NextImage.addClass('active');
		
		CTStaffGalleryMainImage.attr({
			'src': NextImage.children('img').attr('src'),
			'alt': NextImage.children('img').attr('alt')
		});		

		return false;
	});
});})(jQuery);