(function($){
    
    function onNextImage(){
        var tags = $($('#myGallery > img:last').prev()).attr('tags');
        $('#image-label').text(tags);
        autoscroll();
        return false;
    }
	var initLayout = function() {
		$('#myGallery').spacegallery({
            border: 10, // border arround the image
			perspective: 200, // perpective height
			minScale: 0.2, // minimum scale for the image in the back
			duration: 2000, // aimation duration
			loadingClass: 'loading', // CSS class applied to the element while looading images
			before: function() {return false},
			after: onNextImage
        });
	};
	
	EYE.register(initLayout, 'init');
})(jQuery)