// Colour changing script for DIVs

function dCCh(theDiv, theColour){
  if (theColour){
    theDiv.style.backgroundColor=theColour;
  } else{
    theDiv.style.backgroundColor=theColour;
  }
  
}
