<!--
/*
Textual Tooltip Script- 
© Dynamic Drive (www.dynamicdrive.com)
For full source code, installation instructions,
100's more DHTML scripts, and Terms Of
Use, visit dynamicdrive.com
*/

var content=new Array()
//change the array below to the text associated with your links Expand or contract the array, depending on how many links you have
content[0]='Grow big, whichever way to grow.'
content[1]='Everything to brighten a plant\'s day.'
content[2]='From guano to super concentrates, we\'re full of it.'
content[3]='Master the indoor plant universe.'
content[4]='Bad bugs go bye-bye.'
content[5]='Feel like testing the waters?'
content[6]='Why is the sky blue?'

function regenerate(){
	window.location.reload()
}
function regenerate2(){
	if (document.layers){
		appear()
		setTimeout("window.onresize=regenerate",450)
	}
}

function changetext(whichcontent){

	if (document.all||document.getElementById){
		cross_el=document.getElementById? document.getElementById("descriptions"):document.all.descriptions
		cross_el.innerHTML='<span class="msgtext"><img src="/images/msg_arrowbtn.gif" width="9" height="8" border="0">'+whichcontent+'</span>'
	}
	else if (document.layers){
		document.d1.document.d2.document.write('<span class="msgtext"><img src="/images/msg_arrowbtn.gif" width="9" height="8" border="0">'+whichcontent+'</span>')
		document.d1.document.d2.document.close()
	}

}

function appear(){
	document.d1.visibility='show'
}

window.onload=regenerate2

//-->