Any niggs that know wordpress?



Code:
<div id="myCounter">  
      <script type="text/javascript">
         function updateMyCounter(){
            // generate a random number between 0 and 100 
            //  ( this is the amount we'll increment the counter )
            var increment=Math.floor(Math.random()*101);
            currentCount=currentCount + increment;
            document.getElementById("myCounter").innerHTML=currentCount;
            // update the number every 1/2 a second
            setTimeout("updateMyCounter()",500);
         }
         // some starting point
         var currentCount=1234567;
      </script>
       <script type="text/javascript">
         updateMyCounter();
      </script>
</div>

and, no, rish1 and rish2 weren't taken.