jQuery(document).ready(function($){
	$('a[href=#top]').click(function(){
		$('html, body').animate({scrollTop:0}, 'slow');
		return false;
	});
	
	$('#slides').cycle({
		speed: 2000,
		timeout: 4500,
		autostop: 1
	});
});

