// JavaScript Document

// Changes the background color on the main navigation

function changeColor(element, image)
{
document.getElementById(element).style.background= image;

}
