$(document).ready(function()
{
   //$('.copy').jScrollPane({showArrows:true,scrollbarWidth:5});
   $('#sideNav li a, .backtoTop').click(function() {
	   var elementClicked = $(this).attr("href");
	   var destination = $('a[name='+elementClicked.substr(1)+']').offset().top;
	   $("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination-20}, 800 );
	   return false;
	});   
});
