$(document).ready(function() {
	
	$("#home-nav li span").hide();
	
	$("#home-nav li a").hover(
	      function () {
	        $(this).children("span").fadeIn(300);
	      }, 
	      function () {
	        $(this).children("span").fadeOut(500);
	      }
	    );
	   
	$('dd').hide();
	$('dt').click(
	  function() {
	      $(this).next().slideToggle('normal');	
	    }
	  );
})