$(document).ready(function() {

// Jump to top link
	$('#jump_to_top').click(function(event){
		event.preventDefault();
		$('html, body').animate({scrollTop:0}, 'slow');
		return false;
	});

});