A: 

Change this

  for(var j = 0; j < draws[i].picks.length; j++) {
      html.push("<li>"+draws[i].picks[j]+"</li>");
      showWin(draws[i].picks[j]);
  }

to

  for(var j = 0; j < draws[i].picks.length; j++) {
      var img = '<img src="/images/ball-'
                     + draws[i].picks[j]
                     + '.jpg" alt="'
                     + draws[i].picks[j]
                     + '" />';
      html.push("<li>"+img+"</li>");
      showWin(draws[i].picks[j]);
  }

assuming that your images are named "ball-#" and located in the images directory.

tvanfosson
I see this code tries to get an image, but when I look at the properties it doesn't show the image extension.I did upload a image called ball-6.jpg in the images folder
Chris
Sorry. I left the extension out of the construction of the url for the image. I've updated my answer.
tvanfosson
Great! works like a charm :)
Chris