// rollover for ASK ME button
if (document.images) {
  var askmeinact = new Image(); // for the inactive image
  askmeinact.src = "http://www.jeremytankard.com/images/interface/askme.gif";
  var askmeact = new Image(); // for the active image
  askmeact.src = "http://www.jeremytankard.com/images/interface/askme_hover.gif";
}

function act() {
  if (document.images)
    document.images.askmeBTN.src = askmeact.src;
}

function inact() {
  if (document.images)
    document.images.askmeBTN.src = askmeinact.src;
}

