$(function() {
	
	$('#slideshow').show();
	
	var rand = Math.floor(Math.random()*6);
	
	$('#slideshow').cycle({
		speed: 1000,
		timeout: 4000,
		startingSlide: rand
	});
});


