Simple toggle question

Simple toggle question

Using this simple code -

<script>
$(document).ready(function(){
  $(".header").click(function(){
    $(".listholder").toggle();
  });
});
</script>





By default I would like the .listholder div to be minimized and only show when the .header is clicked. At the moment it shows when the page loads. How can I achieve that?

Thanks,

Mart