I have the following jQuery code to try and shift about_sheet right when about_tab is clicked. I used alert($) to confirm jQuery is working, and have also chosen another random div and tried to hide it, which also failed leading me to believe that the issue lies in the selectors.

Here is the code:
Code:
<script type="text/javascript">
	$(function() {

            $("#about_tab").click(function() {
                $("#about_sheet").animate({"left" : "300px" }, 4000);
        });


    });

</script>
Thanks,
Hugh