jslous.noConflict();
var js = jslous;
js(function(){
 var dir_req = 'http://'+location.host+'/req/';
 js('div#topicslist').each(function(){
  var elm = this;
  if(elm && elm.tagName && elm.tagName.toLowerCase() == 'div'){
   jslous.ajax(dir_req+'data.php?mode='+Math.floor(Math.random()*100),'GET','',function(res){
    elm.innerHTML = res;
   },'txt');
  }
 });
});
