menuHover = function() {
	var oMenu = document.getElementById("menuTop").getElementsByTagName("LI");
	for (var i=0;i<oMenu.length;i++) {
		oMenu[i].onmouseover=function() {
			this.className+=" menuHover";
		}
		oMenu[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" menuHover\\b"), "");
		}
	}
}

if (window.attachEvent) window.attachEvent("onload", menuHover);

function showPicture(cURL, nWidth, nHeight) {
  return window.open(cURL,'','toolbar=no, location=no,scrollbars=1, status=no, width='+ (nWidth + 20) +', height='+ (nHeight + 20))
}

function addToBasket(oHref, cInputAmountID) {
	window.location = oHref + '&amount=' + window.document.getElementById(cInputAmountID).value;
	return false;
}