[jQuery] More Jquery calls on a page

[jQuery] More Jquery calls on a page


hi. i always seem to have problems with this so i thought i would join
here and ask. i cant use two different jQuery calls on the same page
in two different <script> tags, something like this....
the reason i need to work like this is because i do asp.net... so i
got the first one on my masterpage and the other on the page that
needs it..
<script type="text/javascript">
$(document).ready(function() {
SOME JQUERY
});
</script>
<script type="text/javascript">
$(document).ready(function() {
SOME JQUERY
});
</script>