﻿function ImageOver(img) {
    $(img).css("background-color", "#8EC543");
}

function ImageOut(img) {
    $(img).css("background-color", "#999999");
}
