jQuery().ready(function(){
$("#header ul li[class='active']").css("background-color", "#2e2e2e");

	$("#header ul li[class!='active']").hover(function () {
    $(this).css({"background-color" : "#444", "padding-bottom" : "5px"}).animate({paddingBottom: "0px"}, 400);
}, 
  function () {
  $(this).css("background-color" , "#171717")}
);
	$('.span3').css("opacity", "0");
	$('.span3').animate({opacity:1},1000);

});

