Ajax tabs problem?????

Ajax tabs problem?????


I am my ajax tab page like this
<html>
<head>
<link rel="stylesheet" href="ui.tabs.css" type="text/css"
media="print, projection, screen">
<script src="jquery.js" type="text/javascript"></script>
<script src="ui.core.js" type="text/javascript"></script>
<script src="ui.tabs.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$('#container-8 > ul').tabs();
});
</script>
</head>
<body>
<h2>Ajax tabs</h2>
<div id="container-8">
<ul>
<li><a href="1.html"><span>One</span></a></li>
<li><a href="2.html"><span>Two</span></a></li>
</ul>
</div>
</body>
</html>
File "1.html" like this
<html>
<head>
</head>
<body>
<h2>1</h2>
</body>
</html>
And my file "2.html" like this
<html>
<head>
<script src="jquery.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
alert(1);
});
</script>
</head>
<body>
<h2>2</h2>
</body>
</html>
When i clicking in tab Two the javascript code is not executed.
What is the problem? Thank's a lot.