//Author: Mohan Bonthu 2/28/2011 : Autoscroll Newsletters

$(document).ready(function() {
$('.scrollPage').click(function() {
   var elementClicked = $(this).attr("href");
   var destination = $(elementClicked).offset().top;
   $("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination-20}, 10 );
   return false;
});
});

