			$(function(){
				var gallery = $('#images');
				gallery.exposure({target : '#exposure',
					controlsTarget : '#controls',
					controls : {
						prevNext : true,
						firstLast : true,
						pageNumbers : false				
					}, 
					showThumbs : true,				
					showCaptions : true,
					showExtraData : false,
					autostartSlideshow : true,
					maxWidth: 520,
					onImage : function(image, imageData, thumb) {
						gallery.wrapper.find('.exposureLastImage').stop().fadeOut(500, function() {
							$(this).remove();
						});
						image.hide().stop().fadeIn(1000);
					}
				});	});
