<!--
// The Array Function
function makeArray(len) {
    for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}
// This is where the array of text/images/sounds is created.
images1 = new makeArray(7);
images1[0] = "<img src='../images/intown/row1/kidpuppy.jpg' width='100' height='104' alt='' border='0' />";
images1[1] = "<img src='../images/intown/row1/kidpuppy2.jpg' width='100' height='104' alt='' border='0' />";
images1[2] = "<img src='../images/intown/row1/ladydog.jpg' width='100' height='104' alt='' border='0' />";
images1[3] = "<img src='../images/intown/row1/ladydog2.jpg' width='100' height='104' alt='' border='0' />";
images1[4] = "<img src='../images/intown/row1/mandog.jpg' width='100' height='104' alt='' border='0' />";
images1[5] = "<img src='../images/intown/row1/mandogkiss.jpg' width='100' height='104' alt='' border='0' />";
images1[6] = "<img src='../images/intown/row1/smgirldog.jpg' width='100' height='104' alt='' border='0' />";

// This is where the array of text/images/sounds is created.
images2 = new makeArray(7);
images2[0] = "<img src='../images/intown/row2/cat.jpg' width='100' height='104' alt='' border='0' />";
images2[1] = "<img src='../images/intown/row2/cat2.jpg' width='100' height='104' alt='' border='0' />";
images2[2] = "<img src='../images/intown/row2/cat3.jpg' width='100' height='104' alt='' border='0' />";
images2[3] = "<img src='../images/intown/row2/cat4.jpg' width='100' height='104' alt='' border='0' />";
images2[4] = "<img src='../images/intown/row2/girlcat.jpg' width='100' height='104' alt='' border='0' />";
images2[5] = "<img src='../images/intown/row2/kidkitten.jpg' width='100' height='104' alt='' border='0' />";
images2[6] = "<img src='../images/intown/row2/kitten.jpg' width='100' height='104' alt='' border='0' />";

// This is where the array of text/images/sounds is created.
images3 = new makeArray(11);
images3[0] = "<img src='../images/intown/row3/dog.jpg' width='100' height='104' alt='' border='0' />";
images3[1] = "<img src='../images/intown/row3/dog2.jpg' width='100' height='104' alt='' border='0' />";
images3[2] = "<img src='../images/intown/row3/dog3.jpg' width='100' height='104' alt='' border='0' />";
images3[3] = "<img src='../images/intown/row3/dog4.jpg' width='100' height='104' alt='' border='0' />";
images3[4] = "<img src='../images/intown/row3/dog5.jpg' width='100' height='104' alt='' border='0' />";
images3[5] = "<img src='../images/intown/row3/dog6.jpg' width='100' height='104' alt='' border='0' />";
images3[6] = "<img src='../images/intown/row3/dog7.jpg' width='100' height='104' alt='' border='0' />";
images3[7] = "<img src='../images/intown/row3/gerbil.jpg' width='100' height='104' alt='' border='0' />";
images3[8] = "<img src='../images/intown/row3/kidhamp.jpg' width='100' height='104' alt='' border='0' />";
images3[9] = "<img src='../images/intown/row3/kidrabbit.jpg' width='100' height='104' alt='' border='0' />";
images3[10] = "<img src='../images/intown/row3/ferret.jpg' width='100' height='104' alt='' border='0' />";


// The random number generator.
rnd.today=new Date();
rnd.seed=rnd.today.getTime();

function rnd() {
        rnd.seed = (rnd.seed*9301+49297) % 233280;
        return rnd.seed/(233280.0);
};

function rand(number) {
        return Math.floor(rnd()*number);
};

circleMOI = new MouseOverImage("circleTag", "images/circlelinks.gif", "images/circlelinksov.gif", "images/circlelinksov.gif");
pharmMOI = new MouseOverImage("pharmTag", "../images/intown/pharmacysm.gif", "../images/intown/pharmacysmov.gif", "../imagesintown/pharmacysmov.gif");
// -->