function categoryBGChange(id) {
	//alert(document.getElementById(id+'BG1').style.background);
	if(document.getElementById('cat'+id+'Trigger').value == 0) {
		//alert(id+'-->in');
		document.getElementById('cat'+id+'BG1').style.background = "url(/img/prodCatGrad1.png)";
		document.getElementById('cat'+id+'BG2').style.background = "url(/img/prodCatGrad2.png)";
		document.getElementById('cat'+id+'arrow').src = "/img/scrollArrow.png";
		document.getElementById('cat'+id+'Trigger').value = 1;
	} else {
		// if(document.getElementById(id+'BG1').style.background = "url(/img/prodCatGrad1.png)")
		//alert('out');
		document.getElementById('cat'+id+'BG1').style.background = "url(/img/prodCatGrad1NA.png)";
		document.getElementById('cat'+id+'BG2').style.background = "url(/img/prodCatGrad2NA.png)";
		document.getElementById('cat'+id+'arrow').src = "/img/scrollArrowNA.png";
		document.getElementById('cat'+id+'Trigger').value = 0;
	}
}
function productHover(id) {
	//alert(document.getElementById(id+'Arr').src);
	if(document.getElementById(id+'Arr').src == 'http://froggabio.com/img/prodArrNA.png') {
		document.getElementById(id+'Arr').src = '/img/prodArr.png';
		document.getElementById(id).className = 'scrollCellSel';
	} else {
		document.getElementById(id+'Arr').src = '/img/prodArrNA.png';
		document.getElementById(id).className = 'scrollCell';
	}
}
function productHoverHP(id) {
	if(document.getElementById(id).className == 'scrollCell') {
		document.getElementById(id).className = 'scrollCellSel';
	} else {
		document.getElementById(id).className = 'scrollCell';
	}
}
