//store the quotations in arrays
  bg_teaser = new Array();
    bg_teaser[0] = "<td style='background-image: url(css/images/bg_home_1.jpg);background-repeat: no-repeat; background-position: 0% 50%;'>&nbsp;</td>";
    bg_teaser[1] = "<td style='background-image: url(css/images/bg_home_2.jpg);background-repeat: no-repeat; background-position: 0% 50%;'>&nbsp;</td>";
    bg_teaser[2] = "<td style='background-image: url(css/images/bg_home_3.jpg);background-repeat: no-repeat; background-position: 0% 50%;'>&nbsp;</td>";
    bg_teaser[3] = "<td style='background-image: url(css/images/bg_home_4.jpg);background-repeat: no-repeat; background-position: 0% 50%;'>&nbsp;</td>";
    bg_teaser[4] = "<td style='background-image: url(css/images/bg_home_5.jpg);background-repeat: no-repeat; background-position: 0% 50%;'>&nbsp;</td>";

  //calculate a random index
  index = Math.floor(Math.random() * bg_teaser.length);