//var homeImageLight = new Image();
//var homeImageDark = new Image();
var servicesImageLight = new Image();
var servicesImageDark = new Image();
var profImageLight = new Image();
var profImageDark = new Image();
var clientsImageLight = new Image();
var clientsImageDark = new Image();
var partnersImageLight = new Image();
var partnersImageDark = new Image();
var aboutImageLight = new Image();
var aboutImageDark = new Image();
var contactImageLight = new Image();
var contactImageDark = new Image();
var homeImageLight = new Image();
var homeImageDark = new Image();


//homeImageLight.src = "http://www.westhighland.net/images/banner/home.jpg";
//homeImageDark.src = "http://www.westhighland.net/images/banner/home_hl.jpg";

homeImageLight.src = "http://www.westhighland.net/images/banner/home_hl.jpg";
homeImageDark.src = "http://www.westhighland.net/images/banner/home.jpg";

servicesImageLight.src = "http://www.westhighland.net/images/prof/support_services_button_over.jpg";
servicesImageDark.src = "http://www.westhighland.net/images/prof/support_services_button.jpg";

profImageLight.src = "http://www.westhighland.net/images/prof/professional_services_button_over.jpg";
profImageDark.src = "http://www.westhighland.net/images/prof/professional_services_button.jpg";

clientsImageLight.src = "http://www.westhighland.net/images/banner/clients_hl.jpg";
clientsImageDark.src = "http://www.westhighland.net/images/banner/clients.jpg";

partnersImageLight.src = "http://www.westhighland.net/images/banner/partners_hl.jpg";
partnersImageDark.src = "http://www.westhighland.net/images/banner/partners.jpg";

aboutImageLight.src = "http://www.westhighland.net/images/banner/about_hl.jpg";
aboutImageDark.src = "http://www.westhighland.net/images/banner/about.jpg";

contactImageLight.src = "http://www.westhighland.net/images/banner/contact_hl.jpg";
contactImageDark.src = "http://www.westhighland.net/images/banner/contact.jpg";

function overNavServices()
{
	document.servicesBg.src = servicesImageLight.src;
}

function notOverNavServices()
{
	document.servicesBg.src = servicesImageDark.src;
}

function overNavProf()
{
	document.profBg.src = profImageLight.src;
}

function notOverNavProf()
{
	document.profBg.src = profImageDark.src;
}
function overNavClients()
{
	document.clientsBg.src = clientsImageLight.src;
}

function notOverNavClients()
{
	document.clientsBg.src = clientsImageDark.src;
}

function overNavPartners()
{
	document.partnersBg.src = partnersImageLight.src;
}

function notOverNavPartners()
{
	document.partnersBg.src = partnersImageDark.src;
}

function overNavAbout()
{
	document.aboutBg.src = aboutImageLight.src;
}

function notOverNavAbout()
{
	document.aboutBg.src = aboutImageDark.src;
}

function overNavContact()
{
	document.contactBg.src = contactImageLight.src;
}

function notOverNavContact()
{
	document.contactBg.src = contactImageDark.src;
}

