// changeCSS changes the css of an html DOM object


function changeCSS(id, newClass)
{
        var identity;

        // create variable from the id passed in
        identity=document.getElementById(id);

        // assign it the CSS class passed in
        identity.className = newClass;
}
