// 
//  cover.js
//  cover page behaviour
//  
//  Created by John van Dijk on 2009-12-18.
//  Copyright 2009 Ruby Libre. All rights reserved.
// 
$(document).ready(function() {
  // $('.sticky').sticky();
  $('#student-section').jump();
  // $('h1 a').hide().focus(function() { $(this).blur(); });
  // hide when ready
  $('#stickies').hide();
  $('#warning').hide();
  $('address').hide();
});
$(window).load(function() {
  setTimeout(function() { $('#warning').show();  }, 1000);
  setTimeout(function() { $('address').show();   }, 1500);
  setTimeout(function() { $('#stickies').show(); }, 2000);
  // setTimeout(function() { $('h1 a').fadeIn(500); }, 2500);
});
