  $(document).ready(function(){   
    /*$("#navigation img").hover(
      function () {
		$(this).animate( {opacity: 0.1 } );
      }, 
      function () {
        $(this).animate( {opacity: 1.0 } );
      });*/
	  
	  // Fade the text in when page is loaded
	  $("#textArea").fadeIn("slow");
	  
	  // Reveal the revealMe div
	  $("#revealLink").toggle(
  		function () {
    	$("#revealMe").slideDown("slow");
  		},
  		function () {
    	$("#revealMe").slideUp("slow");
  		}
	);
	  
	  $("#textArea").find("dd").hide().end().find("dt").click(function(){
	 $(this).next().slideToggle();
	 });
	  
	 
	 $("dt").hover(function(){
	 $(this).css("text-decoration","underline");
	  $(this).css("cursor","pointer");
	 },function(){
	 $(this).css("text-decoration","none");
	 });
	  


	
	});
