var oldParentCatColor;

function ParentCatMouseOver(cat){
	oldParentCatColor = cat.style.backgroundColor;
	cat.style.backgroundColor = "#E39741";
	}
	
function ParentCatMouseOut(cat){
	cat.style.backgroundColor = oldParentCatColor;
	}
	
function ChildCatMouseOver(cat){
	oldParentCatColor = cat.style.backgroundColor;
	cat.style.backgroundColor = "#39A7CF";
	}
	
function ChildCatMouseOut(cat){
	cat.style.backgroundColor = oldParentCatColor;
	}
	
function ParentCatMouseClick(cat,id){
	//document.location = 'category.aspx?id=' + id;	
	document.location = id;
	}
