// A function to handle the mouse over code
//  1 == Go down
//  0 == Go up
function hover(image, state) {
    var src = new String();
    src = image.src;
    if(state)
        src = src.replace(".png", "-h.png");
    else
        src = src.replace("-h.png", ".png");
    
    image.src = src;
}
