americanjonesText = "<p>The not-so-secret life of a spy.</p>";
ablegentsText = "<p>Vulgarity and absurdity in bite-sized pieces.</p>";
everyfingerText = "<p>A blog about sports and life.</p>";
peppermintText = "<p>Another blog about software.</p>";

tv1_on = new Image();
tv1_on.src = "static_amer.gif";
tv1_off = new Image();
tv1_off.src = "static.gif";

tv2_on = new Image();
tv2_on.src = "static_able.gif";
tv2_off = new Image();
tv2_off.src = "static.gif";

tv3_on = new Image();
tv3_on.src = "static_ever.gif";
tv3_off = new Image();
tv3_off.src = "static.gif";

tv4_on = new Image();
tv4_on.src = "static_pepp.gif";
tv4_off = new Image();
tv4_off.src = "static.gif";

function Switch(imgDocID, imgObjName, module) {
   document.images[imgDocID].src = eval(imgObjName + ".src");

   var blah;
   if (document.getElementById) { blah = document.getElementById("blah"); }
   else if (document.all) { blah = document.all["blah"]; }
   else { return; }
   if (module == "aj") { blah.innerHTML = americanjonesText; }
   else if (module == "ag") { blah.innerHTML = ablegentsText; }
   else if (module == "pm") { blah.innerHTML = peppermintText; }
   else if (module == "ef") { blah.innerHTML = everyfingerText; }
   else { blah.innerHTML = ""; }
}

