<!--
if (document.images) {
homeon = new Image;
homeon.src = "images/btn_home2.jpg";
l_insideon = new Image;
l_insideon.src = "images/btn_l_inside_this_book2.jpg";
orderon = new Image;
orderon.src = "images/btn_order2.jpg";
bookon = new Image;
bookon.src = "images/btn_book_forum2.jpg";
mediaon = new Image;
mediaon.src = "images/btn_in_the_media2.jpg";
judgeon = new Image;
judgeon.src = "images/btn_just_one_judge2.jpg";
contacton = new Image;
contacton.src = "images/btn_contact2.jpg";
emailon = new Image;
emailon.src = "images/btn_email_this_page2.jpg";
insideon = new Image;
insideon.src = "images/btn_inside_this_book2.jpg";



homeoff = new Image;
homeoff.src = "images/btn_home1.jpg";
l_insideoff = new Image;
l_insideoff.src = "images/btn_l_inside_this_book1.jpg";
orderoff = new Image;
orderoff.src = "images/btn_order1.jpg";
bookoff = new Image;
bookoff.src = "images/btn_book_forum1.jpg";
mediaoff = new Image;
mediaoff.src = "images/btn_in_the_media1.jpg";
judgeoff = new Image;
judgeoff.src = "images/btn_just_one_judge1.jpg";
contactoff = new Image;
contactoff.src = "images/btn_contact1.jpg";
emailoff = new Image;
emailoff.src = "images/btn_email_this_page1.jpg";
insideoff = new Image;
insideoff.src = "images/btn_inside_this_book1.jpg";



}

function img_act (imgName) {
  if (document.images) {
  imgOn = eval (imgName + "on.src");
  document [imgName].src = imgOn;
  }
}

function img_inact (imgName) {
  if (document.images) {
  imgOff = eval (imgName + "off.src");
  document [imgName].src = imgOff;
  }
}
//-->