/**
 * gallery
 * @author: dani valentin
 */
(function($) {
	$.fn.gallery = function(options) {
		var opts = $.extend({}, $.fn.gallery.gallery, options);
		
		this.click(function() {
			var snapshot = $(this).attr("rel");
			var caption = $(this).nextAll(".thumb-caption").html();
				
			$("#highlight").attr("src",snapshot);
			
			//change caption
			$("#highlight-caption").html(caption);
		})
	}
	
	$.fn.gallery.settings = {}
})(jQuery);