var linktext=new Array()
linktext[0]=""; //collections roll-over, removed
linktext[1]="For any questions you may have regarding products and policies.";
linktext[2]="To place an order.";
linktext[3]="To find out about Le Doggie Couture.";
linktext[4]="We would love to receive a picture of you and your dog in our products with a note.";

function show_rollover_desc(thetext, whichdiv, srcel){
	var div;
	var wdt;
	if (ie)  {
		div = eval("document.all."+whichdiv);
		if (div) {
			div.style.position = 'absolute';
			div.style.top = ie_calculateOffset(srcel, 'y') + 30;
			div.style.left = ie_calculateOffset(srcel, 'x') + 3;
			div.innerHTML='<NOBR>' + linktext[thetext] + '</NOBR>';
			if (div.offsetLeft + div.offsetWidth > getRightDisplayLimit()) {
				div.style.left = getRightDisplayLimit() - div.offsetWidth;
			}
		}
	}
	else if (ns6) { 
		div = document.getElementById(whichdiv);
		wdt = getRightDisplayLimit();
		if (div) {
			div.style.position = 'absolute';
			div.style.top = ie_calculateOffset(srcel, 'y') + 23;
			div.style.left = ie_calculateOffset(srcel, 'x') + 3;
			div.innerHTML='<NOBR>' + linktext[thetext] + '</NOBR>';
			if (div.offsetLeft + div.scrollWidth > wdt) {
				if (document.body.scrollWidth>document.body.offsetWidth)
				{
					div.style.left = parseInt(div.style.left) - (document.body.scrollWidth - wdt);
				} else {
					div.style.left = wdt - div.scrollWidth;	
				}
			}
		}
	}
}

function hide_rollover_desc(whichdiv, srcel){
	if (ie)  {
		eval("document.all."+whichdiv).innerHTML=' ';
	}
	else if (ns6) { 
		document.getElementById(whichdiv).innerHTML=' ';
	}
}