jQuery(document).ready(function () { 
	
	$('.sexyFact').append('<a href="#cannabisKnowledgeBase" class="pageScroller backToTop">Zoom to Top</a>');

	$('.pageScroller').click(function() {
	
		var elementClicked = $(this).attr("href");
		var destination = $(elementClicked).offset().top;
	
		$("html:not(:animated), body:not(:animated)").animate({ scrollTop: destination-10}, 500 );
	
		return false;
	});
	

});
