function over(i) {
  var o_elt
	
	o_elt = document.getElementById("productimagetd" + i)
	if (o_elt && (o_elt.className.indexOf(" ") == -1)) o_elt.className = o_elt.className + " " + o_elt.className + "_hover"
	
	o_elt = document.getElementById("productlinktd" + i)
	if (o_elt && (o_elt.className.indexOf(" ") == -1)) o_elt.className = o_elt.className + " " + o_elt.className + "_hover"
	
	o_elt = document.getElementById("productlink" + i)
	if (o_elt && (o_elt.className.indexOf("_hover") == -1)) o_elt.className = o_elt.className + "_hover"
	
	o_elt = document.getElementById("productlinkcurrency" + i)
	if (o_elt && (o_elt.className.indexOf("_hover") == -1)) o_elt.className = o_elt.className + "_hover"
}

function out(i) {
  var o_elt
	var pos 
	
	o_elt = document.getElementById("productimagetd" + i)
	if (o_elt) {
		lPos = o_elt.className.indexOf(" ")
		if (lPos > -1) o_elt.className = o_elt.className.substr(0,lPos)
	}
	
	o_elt = document.getElementById("productlinktd" + i)
	if (o_elt) {
		lPos = o_elt.className.indexOf(" ")
		if (lPos > -1) o_elt.className = o_elt.className.substr(0,lPos)
	}
	
	o_elt = document.getElementById("productlink" + i)
	if (o_elt) {
		lPos = o_elt.className.indexOf("_hover")
		if (lPos > -1) o_elt.className = o_elt.className.substr(0,lPos)
	}
	
	o_elt = document.getElementById("productlinkcurrency" + i)
	if (o_elt) {
		lPos = o_elt.className.indexOf("_hover")
		if (lPos > -1) o_elt.className = o_elt.className.substr(0,lPos)
	}
}

function show_hide_instructions() {
  var o_elt
	//var caption
	
	o_elt = document.getElementById("product_instructions")
	if (!o_elt) return
	
	if (o_elt.style.display == "none")  {
	  o_elt.style.display = ""  
		//caption = " <span class=\"symbol\">&laquo;</span> Hide Care and Information Notes"
	} else {
	  o_elt.style.display = "none"
		//caption = " <span class=\"symbol\">&raquo;</span> Show Care and Information Notes"
	}
	
	//o_elt = document.getElementById("show_hide_instructions")
	//if (o_elt) o_elt.innerHTML = caption
}
