$(document).ready(function() {
	// simplest example
	$('.simpleSlideShow, .slideShowTopNavi').slideShow({
		interval: 3
	});
	// slideshow with mouse hover
	$('.useMouseSlideShow').slideShow({
		hoverNavigation: true,
		interval: false
	});
	// slideshow with images
	$('.imageNavigation').slideShow({
		interval: 3
	});
	// random slideshow
	$('.randomSlideShow').slideShow({
		interval: 3,
		start: 'random'
	});

});
