// JavaScript Document
$(document).ready(function(){
	$.preloadCssImages();
	$("#humboldt-box-home").hover(function () {
		$("#humboldt-box-logo").animate({ 
			top: "-20px",
			left: "-20px"
		  }, 500 );
	
	}, function () {
		$("#humboldt-box-logo").animate({ 
			top: "0",
			left: "0"
		  }, 500 );
	});
	$(".mnli a").hover(function() {
	  $(this).animate({fontSize:"16px"}, "fast");
	}, function() {
	  $(this).animate({fontSize:"15px"}, "fast");
	});
});
$(window).load(function (){
  $("#humboldt-box-img").fadeIn("slow");
});
