$(function(){
	
	jQuery('#slideshow').fadeSlideShow({
		width: 491, // default width of the slideshow
		height: 240, // default height of the slideshow
		speed: 'slow', // default animation transition speed
		interval: 3000, // default interval between image change
		PlayPauseElement: 'fssPlayPause', // default css id for the play / pause element
		PlayText: 'Play', // default play text
		PauseText: 'Pause', // default pause text
		NextElement: false, //'fssNext', // default id for next button
		NextElementText: 'Next >', // default text for next button
		PrevElement: false, //'fssPrev', // default id for prev button
		PrevElementText: '< Prev', // default text for prev button
		ListElement: 'fssList', // default id for image / content controll list
		ListLi: 'fssLi', // default class for li's in the image / content controll
		ListLiActive: 'fssActive', // default class for active state in the controll list
		addListToId: false, // add the controll list to special id in your code - default false
		allowKeyboardCtrl: true, // allow keyboard controlls left / right / space
		autoplay: true // autoplay the slideshow
	});
	
});
