var image_location_h = "images/horizontal/buttons/";    // horizontal location

//____Buttons for TEST AREA Horizontal____
lexus_0       = new Image;
lexus_0.src   = image_location_h + "lexus_0.gif";
lexus_1       = new Image;
lexus_1.src   = image_location_h + "lexus_1.gif";

taco_0        = new Image;
taco_0.src    = image_location_h + "taco_0.gif";
taco_1        = new Image;
taco_1.src    = image_location_h + "taco_1.gif";

captain_0     = new Image;
captain_0.src = image_location_h + "captain_0.gif";
captain_1     = new Image;
captain_1.src = image_location_h + "captain_1.gif";

winter_0     = new Image;
winter_0.src = image_location_h + "winter_0.gif";
winter_1     = new Image;
winter_1.src = image_location_h + "winter_1.gif";

 

// Adam's simple rollover()
function rollover(img_name,flag)
{
    document.images[img_name].src = eval(img_name + "_" + flag + ".src");
}