$(document).ready(function() 
   {   
	$('.linkToTop a').click(function(){
		$.scrollTo($('#top'), 200);
		return false;
	  });
	});
	
