<!-- preload images

if (document.images) {
image5out = new Image();image5out.src = "images/c_batton.gif";
image6out = new Image();image6out.src = "images/g_batton.gif";
image7out = new Image();image7out.src = "images/r_batton.gif";

image5down = new Image();image5down.src = "images/c_batton_down.gif";
image6down = new Image();image6down.src = "images/g_batton_down.gif";
image7down = new Image();image7down.src = "images/r_batton_down.gif";

image5over = new Image();image5over.src = "images/c_batton_over.gif";
image6over = new Image();image6over.src = "images/g_batton_over.gif";
image7over = new Image();image7over.src = "images/r_batton_over.gif";

}

function msdown(imageName) {
if (document.images) {
document[imageName].src = eval(imageName + "down.src");
}
}

function msover(imageName) {
if (document.images) {
document[imageName].src = eval(imageName + "over.src");
}
}

function msout(imageName) {
if (document.images) {
document[imageName].src = eval(imageName + "out.src");
}
}

// end -->