var showcase_lastImg = null;

$(function(){
	$('ul#showcase').shuffle();
	
    $('#showcase li').each(function(idx) {
        $(this).data('index', (++idx));
    });
	
    $('#showcase').galleria({
        // #display is the empty div which holds full size images
        insert: '#display',
        
        history: false,
        
        // function fired when the image is displayed
        onImage: function(image, caption, thumb) {        
            // smooth transition between images
            if(showcase_lastImg != null){
            	$('#display').css('background-image', 'url('+showcase_lastImg+')');
				image.css('width', '982px');
				image.css('height', '227px');
           		image.hide().fadeIn(3000);
            }
			else{
				image.css('width', '982px');
				image.css('height', '227px');
			}
            showcase_lastImg = image.attr('src');
        }     
    })
    
    // hide caption
    $('#display .caption').css('height', 0)
    
    // simple slideshow
    window.setInterval(function(){
                $.galleria.next()
            }, 10 * 1000)
});



