//  This changes the styles for the left navigation as an item is moused over

function setClass(objectID,newClass) {
	var dom = findDOM(objectID,0);
	dom.className = newClass;
}