Resize DIV on Link Click

Resize DIV on Link Click

Well here's the thing I have a div named "content", and another div class named "resizeme" (for a link). When I click the resizeme link rollover. I want the div to toggle from it's original dimensions of 300x200. However all I got so far is you click the link it goes fullscreen, and from there I can't remember how to make it toggle so when I click the link again it'll go back to it's original size.

Here's my JQuery so far.
  1. $(function(){
    $(".resizeme").click(function(){
    $(".content").animate({
    width: "100%",
    height: "100%",
    }, 600 );
    });
    });

Much help would be appreciated.

Train Insane or Remain The Same