// Jquery Document Ready Function

  $(document).ready(function(){
	  
	  $("#navtop li a").fadeTo('fast', 0);
							 
		$("#navtop li a").hover(
		  function () {
			$(this).fadeTo('medium', 1);

		  },
		  function () {
			$(this).fadeTo('slow', 0);
		  }
		);

  });
 


