simple dropdown question- can you help me make this move up and down,

simple dropdown question- can you help me make this move up and down,

Hi, I want to make a very simple drop down menu - that when you click it it slides down and stays like that and when you click it again it slides back up. here is the code I have so far

  1.   <style>
  2. .block { 
  3. position: fixed; 
  4. background:url('images/DD_BG.png') top left no-repeat;
  5. width:400px; 
  6. height:320px;
  7. top: -250px; 
  8. right: 30px;  
  9. }
  10. </style>

  1. <script>
  2. $("#NewView").click(function(){
  3.   $(".block").animate({"top": "+=250px"}, "slow");
  4. }
  5. );
  6. </script>

i know this is incredibly simple but I just have no idea how to get any further.