function hideVerse(TF){
	var tgt=document.getElementById("extra")
	if(TF) tgt.style.display="none";
	else tgt.style.display="block"
}
function setMouse(){
	document.getElementById("maindiv").onmouseout=function(){hideVerse(0)};
	document.getElementById("maindiv").onmouseover=function(){hideVerse(1)};
}
function stopBubble(e){
	if (!e) var e = window.event;
	e.cancelBubble = true;
	if (e.stopPropagation) e.stopPropagation();
}
function init(){
	setMouse();
	preload();
}
window.onload=init;

function preload(){
	var msg=new Array();
	var imsg='';
	for (var i = 1; i < 7; i++) {
		msg[i]=new Image();
		msg[i].src='./images/div'+i+'.gif'
		imsg+='<img src="'+'./images/div'+i+'.gif'+'">'
	}
	write2frame('preload',imsg)
	//alert(msg)
}

function write2frame(oid, fcontent){
	var tgt=document.getElementById(oid)
	var doc = tgt.contentDocument;
	if (doc == undefined || doc == null) doc = tgt.contentWindow.document;
	doc.open();
	doc.write(fcontent);
	doc.close();
}