function FinIn(v_val)
{
	laynew="image"+v_val
	document.all.item(laynew).style.visibility="visible";
}

function FinOut(v_value)
{
	
	laynew="image"+v_value
	document.all.item(laynew).style.visibility="hidden";
}

function Point(iX, iY){
	this.x = iX;
	this.y = iY;
}
function fGetXY(aTag){
  var oTmp = aTag;
  var pt = new Point(0,0);
  do {
  	pt.x += oTmp.offsetLeft;
  	pt.y += oTmp.offsetTop;
  	oTmp = oTmp.offsetParent;
  } while(oTmp.tagName!="BODY");
  return pt;
}
function test()
{

 var pt = new Point(0,0);
 pt=fGetXY(document.getElementById("index16"));
 document.getElementById("image2").style.left=(pt.x-1).toString()+"px";
 document.getElementById("image2").style.top=(pt.y+32).toString()+"px";
 var pt1 = new Point(0,0);
 pt1=fGetXY(document.getElementById("bthome1"));
 document.getElementById("image1").style.left=(pt1.x-1).toString()+"px";
 document.getElementById("image1").style.top=(pt1.y+32).toString()+"px";
 var pt2 = new Point(0,0);
 pt2=fGetXY(document.getElementById("btcasestudies1"));
 document.getElementById("image3").style.left=(pt2.x-1).toString()+"px";
 document.getElementById("image3").style.top=(pt2.y+32).toString()+"px";
}

/*function FinOut1(v_val)
{
	setTimeout('FinOut1('+v_val+')', 1000);
}*/