function showSubcats(subCatID)
{
	$(subCatID).style.display = 'block';
}
function hideSubcats(subCatID)
{
	$(subCatID).style.display = 'none';
}