// JavaScript Document
 function randInt(min,max)
{
     var div = (max - min) + 1
     var randNum = Math.random()
     for (var i = 0; i <= div - 1; i++)
     {
          if (randNum >= i / div && randNum < (i+1) / div)
          {return i + min}
     }
}


var abc = randInt(1,8);

if (abc == 1) {

     document.write('<a href=http://southshorenow.ca target=_new><img src=./ads/LHouse170x200.jpg width="170" height="200" alt="South Shore Now ad" /></a>');

}


if (abc == 2) {

     document.write('<a href=mailto:c_c_lohnes@hotmail.com><img src=./ads/posture.jpg width="200" height="200" alt="Posture Perfect Massage Therapy ad" /></a>');

}

if (abc == 3) {

     document.write('<a href=http://scotiabank.com/cda/index/0,,LIDen_SID19,00.html target=_new><img src="./ads/ScotiaBank200x200.jpg" width="200" height="200" alt="J.E. Morash Insurance ad" /></a>');

}
if (abc == 4) {

     document.write('<a href=http://www.geraldkeddymp.ca><img src=./ads/JKeddy.jpg width="200" height="200" alt="Gerald Keddy MP ad" /></a>');

}

if (abc == 5) {

     document.write('<a href=http://www.gov.ns.ca/legislature/Members/directory/chester-stmargarets.html><img src=./ads/rafuse_webAD.gif width="200" height="200" alt="Denise Peterson Rafuse, MLA ad" /></a>');

}

if (abc == 6) {

     document.write('<a href=http://www.shoreclub.ca/><img src=./ads/ShoreClub.gif width="200" height="200" alt="Shore Club, Hubbards ad" /></a>');

}
if (abc == 7) {

     document.write('<a href=http://www.mahoneinsurancegroup.com target=_new><img src=./ads/MIG.jpg width="200" height="200" alt="J.E. Morash Insurance ad" /></a>');

}
if (abc == 8) {

     document.write('<a href=http://www.facebook.com/TheStretchDiner target=_new><img src=./ads/StretchDiner_200x156.jpg width="200" height="156" alt="The Stretch Diner ad" /></a>');

}
