(function($) {
	// Our slideshow thumbnails
	$.fn.slideshowThumbnails = function(options) {
		var opts = $.extend({}, $.fn.slideshowThumbnails.defaults, options);
		return this.each(function() {
			var o = $.metadata ? $.extend({}, opts, button.metadata()) : opts;
			$(this).children('a').click(function() {
				$('#' + o.mainImageId).attr('src', $(this).attr('href'));
				return false;
			});
		});
	};
	$.fn.slideshowThumbnails.defaults = {
		mainImageId: 'main-image'
	};
})(jQuery);