<!--

if (document.images) {
  image30on = new Image();
  image30on.src = "http://www.ibsdesign.com/bridal/images/photos/balloon_thumb_roll.jpg";
  
  image31on = new Image();
  image31on.src = "http://www.ibsdesign.com/bridal/images/photos/butterfly_thumb_roll.jpg";
    
  image30off = new Image();
  image30off.src = "http://www.ibsdesign.com/bridal/images/spacer.gif";
  
  image31off = new Image();
  image31off.src = "http://www.ibsdesign.com/bridal/images/spacer.gif";

}

function turnOn(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "on.src");
  }
}

function turnOff(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "off.src");
  }
}

// -->


