[jQuery] jQuery script not working.

[jQuery] jQuery script not working.


Hi All,
Just started working on jQuery. Here's my simple piece of code
borrowed from the tutorials section of jQuery page.
<html>
<head>
<script type="text/javascript" src="http://jquery.com/src/
jquery.js"></script>
<script type="text/javascript">
$("a").click(function(){
$(this).hide("slow");
return false;
});
</script>
</head>
<body>
<a href="http://jquery.com/">jQuery</a>
</body>
</html>
Now when I open this html file in either firefox, or IE , it doesn't
do what it's supposed to, i.e. slowly hide the link and remain on the
same page, but instead it open the specified link page.
Can anyone please verify what's wrong here.
Thanks,
Shishir