// JavaScript Document
<!--
// Preload the images for the rollover
if (document.images) {
    buttonOn = new Image();
    buttonOn.src = "home-yr-hover.jpg";
    buttonOff = new Image();
    buttonOff.src = "home-yr-1.jpg";
    
    button2On = new Image();  
    button2On.src = "home-adults-hover.jpg";
    button2Off = new Image();
    button2Off.src = "home-adults-1.jpg";
}

// Function to replace the off images with on images

function activate(image_name) {
     if (document.images) {
         document[image_name].src = eval(image_name + "On.src"); }
}

function deactivate(image_name) {
     if (document.images) {
         document[image_name].src = eval(image_name + "Off.src"); }
}

// -->
