/*
* SLIDESHOW
*/

/* Attach slideshow controls */
$('#slideshowPhotoBox').cycle({ 
    fx:     'fade', 
    speed:  'fast', 
    timeout: 0, 
    next:   '#btnNext', 
    prev:   '#btnPrevious',
    before:	function(currSlideElement, nextSlideElement){setSlideshowDescription(currSlideElement, nextSlideElement);}

});

function setSlideshowDescription(shownElement, nextSlideElement) {
	$('#description').html(nextSlideElement.alt);
}

// Add automatic slideshow on homepage
$('#etalageImage.home').cycle({
	fx:	'fade',
	timeout:  6000 
});
