// code.js
latestOff = new Image();
latestOn = new Image();
latestOff.src = "http://watchedathome.com/images/latest_off.gif"
latestOn.src = "http://watchedathome.com/images/latest_on.gif"

leOff = new Image();
leOn = new Image();
leOff.src = "http://watchedathome.com/images/le_off.gif";
leOn.src = "http://watchedathome.com/images/le_on.gif";

genreOff = new Image();
genreOn = new Image();
genreOff.src = "http://watchedathome.com/images/genre_off.gif";
genreOn.src = "http://watchedathome.com/images/genre_on.gif";

yearOff = new Image();
yearOn = new Image();
yearOff.src = "http://watchedathome.com/images/year_off.gif";
yearOn.src = "http://watchedathome.com/images/year_on.gif";

yearmonthOff = new Image();
yearmonthOn = new Image();
yearmonthOff.src = "http://watchedathome.com/images/ym_off.gif";
yearmonthOn.src = "http://watchedathome.com/images/ym_on.gif";

topicsOff = new Image();
topicsOn = new Image();
topicsOff.src = "http://watchedathome.com/images/topics_off.gif";
topicsOn.src = "http://watchedathome.com/images/topics_on.gif";

wtfOff = new Image();
wtfOn = new Image();
wtfOff.src = "http://watchedathome.com/images/wtf_off.gif";
wtfOn.src = "http://watchedathome.com/images/wtf_on.gif";

function imgOn(ImgId, thisImg) {
document.images[ImgId].src = eval(thisImg + ".src");
} //imgOn

function imgOff (ImgId, thisImg) {
document.images[ImgId].src = eval(thisImg + ".src");
} //imgOff