$.ajax({
  url: "../common/cmn_idx_top.asp",
  cache: false,
  success: function(html){
    $("#index_top").append(html);
  }
});
$.ajax({
  url: "../common/cmn_idx_bottom.asp",
  cache: false,
  success: function(html){
    $("#index_bottom").append(html);
  }
});
