$(document).ready(function() {
	var totalSpotlights = $("#spotlightCarousel li").length;
	randomSpotlight = Math.floor(Math.random()*totalSpotlights);
	$("#spotlightCarousel").jCarouselLite({
		btnNext: "#spotlightDown",
		btnPrev: "#spotlightUp",
		vertical: true,
		visible: 2,
		start: randomSpotlight
	});
	$('.slideshow').cycle({
		fx: 'fade',
		pause: 1,
		delay: -5000,
		timeout: 7000
	});
});
