//Script created by Jim Young (www.requestcode.com)
//Submitted to JavaScript Kit (http://javascriptkit.com)
//Visit http://javascriptkit.com for this script

//Set the tool tip message you want for each link here.
     var tip=new Array
    tip[0]='To allow; to let pass; to be impartial.'
     tip[1]='Absolutely everything; nothing excluded.'
     tip[2]='That which seems to be but which not actually Is.'
           tip[3]='To be in the full presence of Reality, undeceived by the world of appearance; to be completely cognizant of who you truly are as Spirit.'
           tip[4]='The unbounded, eternal, omniscient, All-pervading, aloof yet sympathetic Attentive Consciousness of Spirit.'
tip[5]='To exist without cause, reason or bounds.'
tip[6]='Are those ideas which you accept as true, even as they are inconsistent with that which actually Is true.'
tip[7]='Reason not founded in Reality.'
tip[8]='The emotion which ensues as Spirit expresses Itself through the mediums of your body and soul.'
tip[9]='The concentration of force which results from restricting or confining Life energy to specific areas.'
tip[10]='To move without restraint or restriction; to Be.'
tip[11]='Perverted interpretation and / or misapprehension of Spiritual Truths.'
tip[12]='To reflect or represent through appearance and action.'
tip[13]='A knowing which is unreliant upon material evidence.'
tip[14]='The emotion which ensues when your perception of what is, is inconsistent with what actually Is; the sensation we feel when something is wrong; not trusting in / surrendering to the One Self.'
tip[15]='The appearance assumed by Life.'
tip[16]='What Will be as a result of having been deficiently held before one&rsquo;s Attention.; potential; possibility.'
tip[17]='The One Supreme Being; that which is materially, and by all other relative accounts, unknowable but in realizing one&rsquo;s identity as Spirit one becomes united with.'
tip[18]='A form of Life.'
tip[19]='The only way to verbally express a nature which is all together Real, Self Aware and without bound.'
tip[20]='Your internal dialogue; the inner conversations that you have with yourself; your self to self talk.'
tip[21]='That part of you which though wholly mindful, attentive and sympathetic to All that you think and do is yet removed from the effects of All that you think and do.'
tip[22]='An insight or understanding which transcends reason or rational explanation.'
tip[23]='Real; existent.'
tip[24]='To show the truth of; to give a reason for.'
tip[25]='The Spiritual Law of cause and effect.'
tip[26]='Your awareness of Truth (which awareness may be noticed by you consciously or unconsciously).'
tip[27]='The state of Being which underlies All existence.'
tip[28]='The state of being you choose to experience.'
tip[29]='The manner in which Life reveals Itself .'
tip[30]='All that Is (existent) in the Present moment; the sum of All Awareness.'
tip[31]='To be impartial; to perceive all viewpoints.'
tip[32]='Unity; harmony; agreement; sameness; the absolute lack of difference and separation.'
tip[33]='The passing of one&rsquo;s Attention or notice by a thing (derived from the Latin word <i>passen<i>  meaning to &ldquo;go by&rdquo;); experience.'
tip[34]='A mental mask, one of many mediums, through which Life acts.'
tip[35]='Disposition; the unique set of parameters (<i>parameters</i> being specific prejudices or narrow points of view) which the qualities of Life are filtered through.'
tip[36]='Derived from the Latin word <i>prĉesse</i> meaning &ldquo;to be before&rdquo; (your Attention).'
tip[37]='That which Is changeless, everlasting and beyond any and All effect.'
tip[38]='As it is above All effect (Real), Reality is a state which is undisturbed, peaceful and all other qualities significatory of tranquility. It is the underlying existence which is common to All.'
tip[39]='The experience you create for yourself based on the ideas you accept as true; the way you personally receive Life or let Life in.'
tip[40]='To explain or account for based on a process of contrast and comparison which, in the end, shows the things compared to fall somewhere along the spectrum of being totally unrelated or wholly related (where being wholly related is the conclusion that the things compared are actually different aspects of one  and the same - thing).'
tip[41]='The transition of Life from one form to another.'
tip[42]='Not the self of appearance but who you Really are behind the mask.'
tip[43]='Wrong thinking.'
tip[44]='The reflection of Spirit; the thoughts of God.'
tip[45]='Your true identity.'
tip[46]='The way in which you express or manifest your existence.'
tip[47]='To be partial; to perceive only one viewpoint.'
tip[48]='To completely identify yourself with; to be at one with.'
tip[49]='A Hindu expression which, in English, translates to thou art that, that thou art.'
tip[50]='Mind in action.'
tip[51]='Those concepts which are inherent to Reality (as they truly are).'
tip[52]='Those concepts which are inherent to Reality (as they, falsely, appear to you).'
tip[53]='Your interpretation of what is known; how accurately one perceives things as they truly are.'
tip[54]='The Real part of your Being; who you are as Spirit.'
tip[55]='Spirit&rsquo;s declaration of Itself to Itself.'
 
     function showtip(current,e,num)
        {
         if (document.layers) // Netscape 4.0+
            {
             theString="<DIV CLASS='ttip'>"+tip[num]+"</DIV>"
             document.tooltip.document.write(theString)
             document.tooltip.document.close()
             document.tooltip.left=e.pageX+14+'px'
             document.tooltip.top=e.pageY+2+'px'
             document.tooltip.visibility="show"
            }
         else
           {
            if(document.getElementById) // Netscape 6.0+ and Internet Explorer 5.0+
              {
               elm=document.getElementById("tooltip")
               elml=current
               elm.innerHTML=tip[num]
               elm.style.height=elml.style.height
               elm.style.top=parseInt(elml.offsetTop+elml.offsetHeight)+'px'
               elm.style.left=parseInt(elml.offsetLeft+elml.offsetWidth+10)+'px'
               elm.style.visibility = "visible"
              }
           }
        }
function hidetip(){
if (document.layers) // Netscape 4.0+
   {
    document.tooltip.visibility="hidden"
   }
else
  {
   if(document.getElementById) // Netscape 6.0+ and Internet Explorer 5.0+
     {
      elm.style.visibility="hidden"
     }
  } 
}