// Beginning of JavaScript -
agent = navigator.userAgent;
browserVer = 2;
if (agent.substring(0,7) == "Mozilla")
{
    if (parseInt(agent.substring(8,9)) >= 3) {browserVer = 1;}
}
if ( browserVer == 1 ) {
//====================================
//         Menu Lateral
//====================================

	mliv_off=new Image(147,18);
	mliv_off.src="./img/livros.gif";
	mliv_on=new Image(147,18);
	mliv_on.src="./img/livros_.gif";

	mfol_off=new Image(147,18);
	mfol_off.src="./img/folhetos.gif";
	mfol_on=new Image(147,18);
	mfol_on.src="./img/folhetos_.gif";

	mrev_off=new Image(147,18);
	mrev_off.src="./img/revista.gif";
	mrev_on=new Image(147,18);
	mrev_on.src="./img/revista_.gif";

	mdev_off=new Image(147,18);
	mdev_off.src="./img/devocao.gif";
	mdev_on=new Image(147,18);
	mdev_on.src="./img/devocao_.gif";

	mbib_off=new Image(147,18);
	mbib_off.src="./img/biblias.gif";
	mbib_on=new Image(147,18);
	mbib_on.src="./img/biblias_.gif";

	mpro_off=new Image(147,18);
	mpro_off.src="./img/promocao.gif";
	mpro_on=new Image(147,18);
	mpro_on.src="./img/promocao_.gif";

	mofe_off=new Image(147,18);
	mofe_off.src="./img/ofertas.gif";
	mofe_on=new Image(147,18);
	mofe_on.src="./img/ofertas_.gif";



	mlei_off=new Image(147,18);
	mlei_off.src="./img/leituras.gif";
	mlei_on=new Image(147,18);
	mlei_on.src="./img/leituras_.gif";


}
function hiLiteOn(imgDocID,imgObjName) {
  // manages mouseOver animations
  //   imgDocID - the name or number of the document image to be replaced
  //   imgObjName - the name of the image object to be swapped in
  if ( browserVer == 1 ) {
    document.images[imgDocID].src = eval(imgObjName + ".src");
  }
}
function hiLiteOff(imgDocID,imgObjName) {
  // manages mouseOver animations
  //   imgDocID - the name or number of the document image to be replaced
  //   imgObjName - the name of the image object to be swapped in
  if ( browserVer == 1 ) {
    document.images[imgDocID].src = eval(imgObjName + ".src"); 
  }
}

// - End of JavaScript - 