// shared javascript functions for the media kit

//-----+
// Change the background color and text color 
// for the navigation buttons on roll-over.
//-----+
   function change(element){
            element.style.backgroundColor = "#e99533";
            element.style.color = "white";
        }

    function change_back(element){
        element.style.backgroundColor = "white";
        element.style.color = "black";
        }
