// JavaScript Document


  var ListMark = new Array();
        ListMark[0] = "http://homepage3.nifty.com/saturday/common/img/listmark-pk.gif";
        ListMark[1] = "http://homepage3.nifty.com/saturday/common/img/listmark-bl.gif";
        ListMark[2] = "http://homepage3.nifty.com/saturday/common/img/listmark-gr.gif";
        ListMark[3] = "http://homepage3.nifty.com/saturday/common/img/listmark-yl.gif";
        ListMark[4] = "http://homepage3.nifty.com/saturday/common/img/listmark-pp.gif";
        ListMark[5] = "http://homepage3.nifty.com/saturday/common/img/listmark-or.gif";
  var Dt = document.getElementById("SiteMap").getElementsByTagName("dt");
  for(var i=0; i<Dt.length; i++) {
    Dt[i].style.backgroundImage="url("+ListMark[i]+")";
  }


