[jQuery] Hey ive got a question about a realy basic thing im trying to implement on wordpress with Gr

[jQuery] Hey ive got a question about a realy basic thing im trying to implement on wordpress with Gr


Hey ive got a question about a realy basic thing im trying to
implement on wordpress with Graphpaperpress's Modularity theme.
Here it is:
<script type="text/javascript">
$(document).ready(function() {
     alert('slickBox & JQuery Loaded');
// hides the slickbox as soon as the DOM is ready
// (a little sooner than page load)
$('.slickbox').hide();
// toggles the slickbox on clicking the noted link
$('a#slick-toggle').click(function() {
$('.slickbox').slideToggle(400);
return false;
});
// closes the slickbox on clicking the noted link
$('a#slick-close').click(function() {
$('.slickbox').slideUp(400);
return false;
});
});
</script>
<h2>
    


        Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text ever
since the 1500s, when an unknown printer took a galley of type and
scrambled it to make a type specimen book. It has survived not only
five centuries, but also the leap into electronic typesetting,
remaining essentially unchanged. It was popularised in the 1960s with
the release of Letraset sheets containing Lorem Ipsum passages, and
more recently with desktop publishing software like Aldus PageMaker
including versions of Lorem Ipsum. <small><a href="#" id="slick-
toggle" name="slick-toggle">Read More...</a></small>
            











<div class="slickbox"> <!--Start the Slickbox Dropdown-->
<hr>
        


            It is a long established fact that a reader will be distracted by
the readable content of a page when looking at its layout. The point
of using Lorem Ipsum is that it has a more-or-less normal distribution
of letters, as opposed to using 'Content here, content here', making
it look like readable English. Many desktop publishing packages and
web page editors now use Lorem Ipsum as their default model text, and
a search for 'lorem ipsum' will uncover many web sites still in their
infancy. Various versions have evolved over the years, sometimes by
accident, sometimes on purpose (injected humour and the
like).<small><a href="#" id="slick-close" name="slick-close">Close...</
a></small>
            












        </div> <!--End the Slickbox Dropdown--></h2>
Now the question is strange because the Alert box isn't even loading
up or anything is there something wrong in the jquery?