$(document).ready(function()
  {
  // scroll to top
  $('a.topOfPage').click(function(){
    $.scrollTo( 0, 500);
    return false;
  });
});

