// JavaScript Document  -- WEBBUBBLES

if (document.images) {
var tmcn = new Image(); // for the inactive image
tmcn.src = "../images/layout/bubbles_left_out.jpg";
 var tmca = new Image(); // for the active image
tmca.src = "../images/layout/bubbles_left_over.jpg";
}
function act() {
if (document.images)
document.images.tmc.src = tmca.src;
}
function inact() {
if (document.images)
document.images.tmc.src = tmcn.src;
}

