function c_in(img)
{
    var path = img.src;
    path = path.replace("_off", "_on");
    img.src = path;
}
function c_out(img)
{
    var path = img.src;
    path = path.replace("_on", "_off");
    img.src = path;
}