
function hctoggle(num)
{
	hcResetAll()
	document.getElementById('h'+num+'t').style.backgroundImage="url('images/0/bkgTabProducts.gif')";
	document.getElementById('h'+num+'t_div').style.display = 'block';
	document.getElementById('h'+num+'b').style.color = '#000000';
	
	
}
function hcResetAll()
{
	numitems = 3
	for(i=1; i<=numitems; i++)
	{
		
		
		document.getElementById('h'+i+'t_div').style.display = 'none';
		document.getElementById('h'+i+'b').style.color = "#ffffff";
		document.getElementById('h'+i+'t').style.backgroundImage = "";
	}
}
/**
WTF? This one is backwards, why was this being used and not the top? That isn't how it is in production!
function hctoggle(num)
{
	hcResetAll()
	document.getElementById('h'+num+'t').style.backgroundImage="";
	document.getElementById('h'+num+'t_div').style.display = 'block';
	document.getElementById('h'+num+'b').style.color = '#ffffff';
	
	//alert('h'+num+'t_div')
}
function hcResetAll()
{
	numitems = 2
	for(i=1; i<=numitems; i++)
	{
		//alert(i)
		
		document.getElementById('h'+i+'t_div').style.display = 'none';
		document.getElementById('h'+i+'b').style.color = '#000000';
		document.getElementById('h'+i+'t').style.backgroundImage = "url('images/0/bkgTabProducts.gif')";
	}
}**/