//Contact Form Inputs//
// Functions for input boxes on contact form//
// Sets the colours inside the form boxes within the contact form//

function setBgImageContact(element,imageFile) {
  element.style.backgroundImage="url("+imageFile+")";
  element.style.color="#7A2D35";
}

function setBgImageOverContact(element,imageFile) {
  element.style.backgroundImage="url("+imageFile+")";
  element.style.color="#000000";
}
