function swapIn(ele){
    ele.src = ele.src.replace(/_off/, "_on");
}

function swapOut(ele){
     ele.src = ele.src.replace(/_on/, "_off");
}
