﻿//This function simply changes the css class of the element
//passed in - simply give the element an id and call this when
//you need it.
function changeClass(id, newClass)
{
    element = document.getElementById(id);
    element.className = newClass;
}
