$(document).ready(function() {
	//add images to html					   
	$('#slideshow').append('<img src="/images/mainpage/002.jpg" width="624" height="426" /><img src="/images/mainpage/003.jpg" width="624" height="426" /><img src="/images/mainpage/004.jpg" width="624" height="426" /><img src="/images/mainpage/005.jpg" width="624" height="426" /><img src="/images/mainpage/006.jpg" width="624" height="426" /><img src="/images/mainpage/007.jpg" width="624" height="426" /><img src="/images/mainpage/008.jpg" width="624" height="426" />');
	
    //start the show
	$('#slideshow').cycle({
		fx: 'fade',
		timeout: 4000
	});
});

