
// Pic_&_Thumb_Select.js

var defaultImgPath;
var defaultTxtPath;
var mousInOutTbl;
var pathImgLast;
var picTextLast;

var defaultImgPath= "Images_Home/Wh_Barrel_Alley_280x210.jpg";
var defaultTxtPath= "Views of the Jewel Tunnel Showroom and Warehouse showing the" + 
                    "many items stocked. View of Barrel Alley, barrels of mineral" + 
                    "items from around the world."

mousInOutTbl= 0;

function mousOver(pathImg, picText) {
  // Firefox does not recognize .innerText but recognizes .innerHTML. 
  // IE recognizes .innerText & .innerHTML.
  document.getElementById("picBoxImgId01").src= pathImg;
  document.getElementById("tblRow2Id01").innerHTML= picText; 

  mousInOutTbl= 1;
  pathImgLast= pathImg;
  picTextLast= picText;
}

function mousOut() {
  document.getElementById("picBoxImgId01").src= pathImgLast;
  document.getElementById("tblRow2Id01").innerText= picTextLast;
}

function mousOverTbl() { 
  if (mousInOutTbl== 0) { 
    document.getElementById("picBoxImgId01").src= defaultImgPath;
    document.getElementById("tblRow2Id01").innerText= defaultTxtPath; 
    return;   
  }
  document.getElementById("picBoxImgId01").src=pathImgLast;
  document.getElementById("tblRow2Id01").innerText= picTextLast;
}

function mousOutTbl() { 
  if (mousInOutTbl==1) { 
    document.getElementById("picBoxImgId01").src=pathImgLast;
    document.getElementById("tblRow2Id01").innerText= picTextLast; 
    return;
  }

  document.getElementById("picBoxImgId01").src= defaultImgPath;
  document.getElementById("tblRow2Id01").innerText= defaultTxtPath;
  mousInOutTbl= 0;
}
