	//Click event handler for any anchor that has an href that ends in top
	      $('.backToTop').click(function() {

		      $('html, body').animate({ scrollTop:0 }, '1000');
		      return false;
	 
	      });
