// JavaScript Document


var arrHeroes=new Array();
arrHeroes["eva_kor"] = "<b>Eva Kor</b><br>Survivor of Auschwitz, forgave Dr. Josef Mengele, her tormentor, and the Nazis.";
arrHeroes["jaimee_karroll"] = "<b>Jaimee Karroll</b><br/>Kidnapped and abused as a teenager, she learned to forgive and now facilitates healing dialogue with prisoners.";
arrHeroes["julie_chimes"] = "<b>Julie Chimes</b><br/>Nearly stabbed to death, she recovered and forgave her assailant and now teaches others to forgive.";
arrHeroes["nadia_bishop"] = "<b>Nadia Bishop</b><br/>Publicly forgave the 13 assassins of her father, Prime Minister Maurice Bishop of Grenada.";
arrHeroes["fred_luskin"] = "<b>Dr. Fred Luskin</b><br/>Director, Stanford University Forgiveness Project, author “Forgive to Love”";

arrHeroes["auriela"] = "The '<b>Call to Forgive</b>' will be sounded on August 3rd, 2008 8am PST [11am EST] and 11am PST [2pm EST], as people the world over will unite in a synchronized guided forgiveness meditation to forgive “the unforgivable” in themselves and others, making the choice to let go of the pain of their past and to set themselves free.<br>The focus of this joined effort is to create a powerful energetic wave of compassion and understanding that will move through the planet bringing the healing power of forgiveness to everywhere where there is suffering and pain. <br/><b><i>Please click on this link for more information</i></b>";

arrHeroes["karen_drucker"] = "<b>Karen Drucker</b> has recorded 11 CDs of her original inspirational music and has won numerous awards for her volunteer work for performing and producing shows for organizations in need.<br>";
arrHeroes["jennifer_youngdahl"] = "<b>Jennifer Youngdahl's</b> mission as a professional singer, songwriter, recording artist and motivational singing teacher for over 20 years is to touch and open hearts, inspire acts of courage, excellence and reawaken the magnificence that is in everybody.";
arrHeroes["east_bay_choir"] = "<b>The East Bay International Mass Choir</b> - Directed by Ms. Michelle Jordan, RScP has been performing for Forgiveness Day events for many years and is know for their powerful and diverse performances.";

arrHeroes["fd"] = "<b>The International Forgiveness Day</b> - has been celebrated the first Sunday in August since 1996. The focus of the International Forgiveness Day celebration is to honor those identified as Heroes and Champions of Forgiveness, Nonviolence and Peace. These people exemplify the power and benefits of the healing power and benefits of forgiveness and nonviolence.  They also serve as outstanding role models, which are so desperately needed. <br/><b><i>Please come and celebrate the amazing power of forgiveness and the inspiration and freedom it can bring to each of our lives</i></b>";


/***********************************************
* Fixed ToolTip script- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/
		
var tipwidth='150px' //default tooltip width
var tipbgcolor='lightyellow'  //tooltip bgcolor
var disappeardelay=250  //tooltip disappear speed onMouseout (in miliseconds)
var vertical_offset="3px" //horizontal offset of tooltip from anchor link
var horizontal_offset="0px" //horizontal offset of tooltip from anchor link

/////No further editting needed

var ie4=document.all
var ns6=document.getElementById&&!document.all

if (ie4||ns6)
	document.write('<div id="fixedtipdiv" style="visibility:hidden;width:'+tipwidth+';position:absolute;z-index:99;padding:5px;border:2px solid #cccc9c" ></div>')

function getposOffset(what, offsettype){
	var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
	var parentEl=what.offsetParent;
	while (parentEl!=null){
	totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
	parentEl=parentEl.offsetParent;
	}
	return totaloffset;
}


function showhide(obj, e, visible, hidden, tipwidth){
	if (ie4||ns6)
	dropmenuobj.style.left=dropmenuobj.style.top=-500
	if (tipwidth!=""){
	dropmenuobj.widthobj=dropmenuobj.style
	dropmenuobj.widthobj.width=tipwidth
	}
	if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
	obj.visibility=visible
	else if (e.type=="click")
	obj.visibility=hidden
}

function iecompattest(){
	return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function clearbrowseredge(obj, whichedge){
	var edgeoffset=(whichedge=="rightedge")? parseInt(horizontal_offset)*-1 : parseInt(vertical_offset)*-1
	if (whichedge=="rightedge"){
	var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
	dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
	if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
	edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
	}
	else{
	var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
	dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
	if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure)
	edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
	}
	return edgeoffset
}

function fixedtooltip(name, obj, e, tipwidth) {
	if (window.event) event.cancelBubble=true
	else if (e.stopPropagation) e.stopPropagation()
	clearhidetip()
	dropmenuobj=document.getElementById? document.getElementById("fixedtipdiv") : fixedtipdiv
	dropmenuobj.innerHTML = arrHeroes[name];
	
	if (ie4||ns6){
	showhide(dropmenuobj.style, e, "visible", "hidden", tipwidth)
	dropmenuobj.x=getposOffset(obj, "left")
	dropmenuobj.y=getposOffset(obj, "top")
	dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
	dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
//alert(dropmenuobj.style.left + " - " + dropmenuobj.style.top);	
	}
}

function hidetip(e){
	if (typeof dropmenuobj!="undefined"){
	if (ie4||ns6)
	dropmenuobj.style.visibility="hidden"
	}
}

function delayhidetip(){
	if (ie4||ns6)
	delayhide=setTimeout("hidetip()",disappeardelay)
}

function clearhidetip(){
if (typeof delayhide!="undefined")
clearTimeout(delayhide)
}

