$(document).ready(
  function(){
    setTimeout(function() { $('#overlay').fadeOut('slow'); }, 2000);
  }
);
$(function() {
  // on mouse over
  $("#navigation a.link").hover(function () {
	// animate opacity to full
	$(this).animate({
		"padding-left": "10px"
	});
  },
  // on mouse out
  function () {
	// animate opacity to nill
	$(this).animate({
		"padding-left": "0px"
	});
  });
});