$(document).ready(function(){
   if($('#dictBox').length > 0){
      $.post('/ajax.php',{scontroller: 'dictionary', saction: 'shortList'}, function(sdata){
          $('#dictBox').html(sdata);        
      });
   }
});
