$("document").ready(function () {
	$('#top').cycle({ 
		fx:    'scrollHorz',
		timeout: 10000
	});
	
	$("#to-top").live("click", function (event) {
		event.preventDefault();
		$('html,body').animate({scrollTop: 0}, 1000);
	});
});
