function setCatList(idCategory) {
	if (document.getElementById('imgSubCat'+idCategory)) {
		if (document.getElementById('imgSubCat'+idCategory).src == JURL+'/www/img/arrow-category.gif') {
			if (subCats[idCategory] != "") {
				document.getElementById('subCatsList'+idCategory).innerHTML = subCats[idCategory];
				document.getElementById('subCatsList'+idCategory).style.display = "inline";
			}
			document.getElementById('imgSubCat'+idCategory).src=JURL+'/www/img/arrow-category-down.gif';
			document.getElementById('imgSubCat'+idCategory).style.height='10px';
		} else {
			document.getElementById('imgSubCat'+idCategory).src=JURL+'/www/img/arrow-category.gif';
			document.getElementById('imgSubCat'+idCategory).style.height='10px';
			if (subCats[idCategory] != "") {
				document.getElementById('subCatsList'+idCategory).style.display = "none";
			}
		}
	}
	
}
