﻿// JScript File
function mouseover(intIndex)
{
    document.getElementById("button"+intIndex).src = "buttons/hover("+intIndex+").jpg";
}

function mouseout(intIndex)
{
    document.getElementById("button"+intIndex).src = "buttons/button("+intIndex+").jpg";
}

