images = new Array(3);
images[0] = "url(http://fcmom.org/img/fcmom_t_featpic_xmastwins.jpg) #fff no-repeat right top";
images[1] = "url(http://fcmom.org/img/featpic_keoughbath.jpg) #fff no-repeat right top";
images[2] = "url(http://fcmom.org/img/featpic_brunnertwins.jpg) #fff no-repeat right top";
images[3] = "url(http://fcmom.org/img/featpic_parkstwins.jpg) #fff no-repeat right top";
images[4] = "url(http://fcmom.org/img/featpic_bradshawtwins.jpg) #fff no-repeat right top";
images[5] = "url(http://fcmom.org/img/featpic_ellisfam.jpg) #fff no-repeat right top";
images[6] = "url(http://fcmom.org/img/featpic_warsockiboys.jpg) #fff no-repeat right top";
images[7] = "url(http://fcmom.org/img/featpic_wenigertwins.jpg) #fff no-repeat right top";
images[8] = "url(http://fcmom.org/img/featpic_harlowfam.jpg) #fff no-repeat right top";
images[9] = "url(http://fcmom.org/img/featpic_tripletshandinhand.jpg) #fff no-repeat right top";
images[10] = "url(http://fcmom.org/img/featpic_ballet.jpg) #fff no-repeat right top";
images[11] = "url(http://fcmom.org/img/featpic_sheridantwins.jpg) #fff no-repeat right top";
images[12] = "url(http://fcmom.org/img/fcmom_t_featpic_home.jpg) #fff no-repeat right top";
images[13] = "url(http://fcmom.org/img/featpic-lincicumtwins.jpg) #fff no-repeat right top";
images[14] = "url(http://fcmom.org/img/featpic-raganotwins.jpg) #fff no-repeat right top";
images[15] = "url(http://fcmom.org/img/featpic-pecjaktrips8mos.jpg) #fff no-repeat right top";


var newPic = 0;
var totalPics = images.length;

function rotateFeaturedPics() {
  newPic++;
  if (newPic == totalPics) {
    newPic = 0;
  }
  document.getElementsByTagName("div")("sidebar").style.background = images[newPic];
  setTimeout("rotateFeaturedPics()", 3*1000);
}
window.onload=rotateFeaturedPics;
