[jQuery] Show/Hide with Two Links

[jQuery] Show/Hide with Two Links

How can I reset the show/hide toggle of one link if a specific hide
link in the recently shown content section is clicked? Here's what
I'm using so far, but of course, if you click the hide cart link, you
have to click the show cart link twice to show the cart again since
the toggle doesn't reset.
Scott
$(document).ready(function(){
    $("a.show_cart").toggle(
        function(){
            $("div#minicart").slideDown("normal");},
        function(){
            $("div#minicart").slideUp("normal");});
    $("a.hide_cart").click(
        function(){
            $("div#minicart").slideUp("normal");});
});
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/