hide/Show methods

hide/Show methods

Hello

I use use "hide and show" to show and hide a ul.

First when the document is loaded.
And when i click on link.

I want to let the ul showed ou hidden when the page is reloaded.

Is it possible :

My code :
  1.    $(function() {
  2.             
  3.         
  4.    
  5.             $("ul li").hide();
  6.                 
  7.             $("link").click(function() {
  8.                 
  9.                 $("ul li").toggle("normal");
  10.                 
  11.                 
  12.             });
  13.            
  14.         });