var img=new Array(
new Array('../images/sponsors/MC2_Logo.GIF','http://www.mc2wi.com'),
new Array('../images/sponsors/DLI_Logo.gif','http://www.discountliquorinc.com'), // -->
new Array('../images/sponsors/YES_Logo.GIF','http://www.yeslifts.com'));
                          
var rn=Math.floor(Math.random()*img.length); // RN=Random Number :-)

for (x=0;x<=2;x++)
    {
//    document.writeln('<a target='+'"_blank"'+' href='+img[rn][1]+'><img SRC='+img[rn][0]+' width="200" height="75" alt="" border="2" /></a>');
     document.writeln('<a target='+'"_blank"'+' href='+img[x][1]+'><img SRC='+img[x][0]+' width="200" height="75" alt="" border="2" /></a>');
   document.writeln('<br><br>');
//    if (rn==3)
//        {
//        rn = -1;
//        }
//   rn = rn + 1;
   }
//
