var oldSource = "";
function imageOver(img)
{
    oldSource = new String(img.src);
    var newSource = oldSource.replace("/bw", "");
    img.src = newSource;
}
function imageOut(img)
{
    img.src = oldSource;
}
