IONEX,
через $().load скрипты со страницы не подключаются
Как нидь нидь так
<script>
function LoadMy(Link,selektor){
function getXmlHttp(){var xmlhttp;try{xmlhttp=new ActiveXObject("Msxml2.XMLHTTP")}catch(e){try{xmlhttp=new ActiveXObject("Microsoft.XMLHTTP")}catch(E){xmlhttp=false}}if(!xmlhttp&&typeof XMLHttpRequest!='undefined'){xmlhttp=new XMLHttpRequest()}return xmlhttp}
var xmlhttp=getXmlHttp();xmlhttp.open('GET',Link,true);xmlhttp.onreadystatechange=function(){if(xmlhttp.readyState==4){if(xmlhttp.status==200){if($(selektor).html()!=null){$(selektor).append(xmlhttp.responseText)}}}};xmlhttp.send(null);
}
</script>
<div id="content"></div>
<script>
var Link=$(obj).attr('name');
var selektor='#content';
LoadMy(Link,selektor);
</script>