$(document).ready(function() {
  // start the menu up
  $('ul.sf-menu').superfish({
    delay:       800,
    animation:   {opacity:'show', height:'show'},
    speed:       'fast',
    autoArrows:  true,
    dropShadows: true
  });
  
  // start the tooltips up
  $('.tooltip').tooltip({
    delay: 800, 
    showURL: false, 
    showBody: " - ", 
    opacity: 0.85,
    extraClass: 'tooltip-popup'
  })
  
  $('.container').corner('top');
  $('#top').corner('top');
  
  $('#throbber').ajaxStart(function(){
    $(this).show();
  }).ajaxStop(function(){
    $(this).fadeOut('fast');
  })
  
});