$(document).ready(function(){
	//Animates the nav
	$(".nav div").animate({ height: '90px' }, 2000, "easeOutElastic");

	//Controls the rollover and default states of the links
	$(".nav a").hover(function(){
		$(this).find("div").css("background", "#131313");
		$(this).css("color", "#131313");
	},
	function(){
		$(this).find("div").css("background", "#fff");
		$(this).css("color", "#fff");
	});
});

