$(function() {
	// code to execute when the DOM is ready
	$('#toppen').click( function(e) {
		e.preventDefault();
		$('html, body').animate({scrollTop:0}, 'slow');
	});
});
