// no conflict mode
jQuery(function($) {
  // external links
  $('a.external').click(function(){window.open(this.href);return false});
  
  // go to top link
  $('#gototop').click(function(){$('html').animate({scrollTop:0},{duration:2000,easing:'easeOutExpo'})});
  
});