//Link Description script- © Dynamic Drive (www.dynamicdrive.com)
//For full source code and TOS, visit http://www.dynamicdrive.com

//change link descriptions to your own. Extend as needed
var linktext=new Array()
linktext[0]="Return to the first page~"
linktext[1]="Have a look at our nekomimi and other items!"
linktext[2]="Visit our photo and art gallery!"
linktext[3]="Learn how to order from our shop~"
linktext[4]="Frequently Asked Questions :'3"
linktext[5]="Goodies and fun downloads for you :'D!"
linktext[6]="See our contact details and links ^-^"

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

function show_text(thetext, whichdiv){
if (ie) eval("document.all."+whichdiv).innerHTML=linktext[thetext]
else if (ns6) document.getElementById(whichdiv).innerHTML=linktext[thetext]
}

function resetit(whichdiv){
if (ie) eval("document.all."+whichdiv).innerHTML=' '
else if (ns6) document.getElementById(whichdiv).innerHTML=' '
}