﻿function overImg(id, src, ext) {
    if(src.indexOf("_over") == -1) {
	    id.src = src.replace("."+ext, "_over."+ext);
    }
}
function outImg(id, src, ext) {
	id.src = src.replace("_over."+ext, "."+ext);
}
