// JavaScript Document
function showCategoryPic(path){
    categoryField = document.getElementById('categoryPic');
	categoryField.src='images/loading.gif';
	categoryField.src=path;
	return false;
}
