function productRollover(id) {
	document.getElementById("prod"+id).style.background="url(/images/prod-over.gif)";
	document.getElementById("prodText"+id).style.display="block";
	document.getElementById("prodImg"+id).style.display="none";
}
function productOff1(id) {
	document.getElementById("prod"+id).style.background="none";
	document.getElementById("prodText"+id).style.display="none";
	document.getElementById("prodImg"+id).style.display="block";
}
function productOff2(id) {
	document.getElementById("prod"+id).style.background="url(/images/prod2.jpg)";
	document.getElementById("prodText"+id).style.display="none";
}
function productOff3(id) {
	document.getElementById("prod"+id).style.background="url(/images/prod3.jpg)";
	document.getElementById("prodText"+id).style.display="none";
}
function productOff4(id) {
	document.getElementById("prod"+id).style.background="url(/images/prod4.jpg)";
	document.getElementById("prodText"+id).style.display="none";
}
function productOff5(id) {
	document.getElementById("prod"+id).style.background="url(/images/prod5.jpg)";
	document.getElementById("prodText"+id).style.display="none";
}

