var isIE = document.all?true:false;
if (!isIE) document.captureEvents(Event.MOUSEMOVE);
//document.onmousemove = getMousePosition;
// variable declarations
  var _x;
  var _y;
var define = new Array();
define[1] = 'Inspired by the story of Cimon and Pero, [as chronicled by the Roman historian Valerius Maximus in the Memorable Deeds and Sayings of the Ancient Romans], the Masters of Renaissance captured the act of love and piety in canvas and oil.';

define[2] = 'While the exact account of "The Lactation of St. Bernard" is unclear, his vision inspired many paintings of the Virgin Mary wetting the lips of St. Bernard from her breast. By one account: Founder of the Abby of Clairvaux, (France), St. Bernard was praying before a statue of the Virgin Mary, begging for a sign that she was truly the Virgin mother of God, when the statue came to life, and sprayed milk from her breast on his parched lips.';
var colorBG = '#ffff00';

define[3] = 'Since the dawn of time, the female form has inspired the imagination of man. Countless generations of Artisans have immortalized their reverence from women in paintings, and in stone.';
var colorBG = '#ffff00';


//   document.write(contentString);  
function getMousePosition(e) {
  if (!isIE) {
    _x = e.pageX;
    _y = e.pageY;
  }
  if (isIE) {
    _x = event.clientX + document.body.scrollLeft;
    _y = event.clientY + document.body.scrollTop;
  }
  return true;
}
function vocab(a)
{
getMousePosition();
contentString = define[a];
Link001.innerText=contentString;
Link001A.bgColor = colorBG;
_y = _y + 10;
var DefBlock = document.getElementById('definitionBox');
DefBlock.style.top = _y;
DefBlock.style.visibility="visible";
}
function hideVocab()
{
var DefBlock = document.getElementById('definitionBox');
DefBlock.style.visibility="hidden";
}