My jquery is not working

My jquery is not working

Hi There
I use this code in this web site

<script>
jQuery(function() {
jQuery( "#tabs<?php the_ID(); ?>" ).tabs();
});
</script>

<div id="tabs<?php the_ID(); ?>">
<ul>
<li><a href="#tabs-1_<?php the_ID(); ?>">Hebrew</a></li>
<li><a href="#tabs-2_<?php the_ID(); ?>">English</a></li>

</ul>
<div id="tabs-2_<?php the_ID(); ?>">
English Content
</div>
<div id="tabs-1_<?php the_ID(); ?>">
Hebrew Content
</div>
</div>

And I have this on the header.php -

<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.1.1.min.js"></script>

And still - for some reason it doesn't work....

On another site I'm working - the same script works - it seems like the jquery is not loading.

Any Suggestions?

Thanks

Guy