// JavaScript Document$(document).ready(function() { 	$(".navicon a").hover(function() {	  $(this).next("span").animate({opacity: "show", top: "0"}, "slow");	}, function() {	  $(this).next("span").animate({opacity: "hide", top: "-52"}, "fast");	});});
