// JavaScript Document
function goNumbers()
{
  var aOl = document.getElementsByTagName('ol');
  for(var i=0;i<aOl.length;i++)
  {
    if(aOl[i].className=='numbered')
    {
      aOl[i].style.listStyleType='none';
      aOl[i].style.listStylePosition='inside';
      var aLi = aOl[i].getElementsByTagName('li');
      for(var j=0;j<aLi.length;j++)
      {
        aLi[j].style.backgroundRepeat = 'no-repeat';
        aLi[j].style.paddingLeft = '100px';
        aLi[j].style.backgroundPosition = '-10px -10px';
        aLi[j].style.backgroundImage = "url('/img/articles/sk/10_"+String(Number(j)+1)+".jpg')";
        var oh = aLi[j].offsetHeight;
        if(oh<120)aLi[j].style.height='120px'; 
      }
    }
  }
}
window.onload = function() {
  goNumbers();
}