// JavaScript Document
if (document.images) {
	
homeon = new Image(); // Active images
homeon.src = "images/btns/home_dwn.gif";

homeoff = new Image(); // Inactive images
homeoff.src = "images/btns/home_up.gif";
	
aboutuson = new Image(); // Active images
aboutuson.src = "images/btns/about_us_dwn.gif";

aboutusoff = new Image(); // Inactive images
aboutusoff.src = "images/btns/about_us_up.gif";

parklocationson = new Image(); // Active images
parklocationson.src = "images/btns/park_locations_dwn.gif";

parklocationsoff = new Image(); // Inactive images
parklocationsoff.src = "images/btns/park_locations_up.gif";

cataloniaon = new Image(); // Active images
cataloniaon.src = "images/btns/catalonia_dwn.gif";

cataloniaoff = new Image(); // Inactive images
cataloniaoff.src = "images/btns/catalonia_up.gif";

malagaon = new Image(); // Active images
malagaon.src = "images/btns/malaga_dwn.gif";

malagaoff = new Image(); // Inactive images
malagaoff.src = "images/btns/malaga_up.gif";

parkinfoon = new Image(); // Active images
parkinfoon.src = "images/btns/park_info_dwn.gif";

parkinfooff = new Image(); // Inactive images
parkinfooff.src = "images/btns/park_info_up.gif";

besaluon = new Image(); // Active images
besaluon.src = "images/btns/besalu_dwn.gif";

besaluoff = new Image(); // Inactive images
besaluoff.src = "images/btns/besalu_up.gif";

espanolon = new Image(); // Active images
espanolon.src = "images/btns/espanol_dwn.gif";

espanoloff = new Image(); // Inactive images
espanoloff.src = "images/btns/espanol_up.gif";

lescalaon = new Image(); // Active images
lescalaon.src = "images/btns/lescala_dwn.gif";

lescalaoff = new Image(); // Inactive images
lescalaoff.src = "images/btns/lescala_up.gif";

andaluciaon = new Image(); // Active images
andaluciaon.src = "images/btns/andalucia_dwn.gif";

andaluciaoff = new Image(); // Inactive images
andaluciaoff.src = "images/btns/andalucia_up.gif";

alicanteon = new Image(); // Active images
alicanteon.src = "images/btns/alicante_dwn.gif";

alicanteoff = new Image(); // Inactive images
alicanteoff.src = "images/btns/alicante_up.gif";

homeson = new Image(); // Active images
homeson.src = "images/btns/ourhomes_dwn.gif";

homesoff = new Image(); // Inactive images
homesoff.src = "images/btns/ourhomes_up.gif";

maldiveson = new Image(); // Active images
maldiveson.src = "images/btns/maldives_dwn.gif";

maldivesoff = new Image(); // Inactive images
maldivesoff.src = "images/btns/maldives_up.gif";

savanahon = new Image(); // Active images
savanahon.src = "images/btns/savanah_dwn.gif";

savanahoff = new Image(); // Inactive images
savanahoff.src = "images/btns/savanah_up.gif";

madisonon = new Image(); // Active images
madisonon.src = "images/btns/madison_dwn.gif";

madisonoff = new Image(); // Inactive images
madisonoff.src = "images/btns/madison_up.gif";

charlestonoff = new Image(); // Inactive images
charlestonoff.src = "images/btns/charleston_up.gif";

charlestonon = new Image(); // Active images
charlestonon.src = "images/btns/charleston_dwn.gif";

haciendaoff = new Image(); // Inactive images
haciendaoff.src = "images/btns/hacienda_up.gif";

haciendaon = new Image(); // Active images
haciendaon.src = "images/btns/hacienda_dwn.gif";

financingon = new Image(); // Active images
financingon.src = "images/btns/financing_dwn.gif";

financingoff = new Image(); // Inactive images
financingoff.src = "images/btns/financing_up.gif";

inspectionon = new Image(); // Active images
inspectionon.src = "images/btns/inspectio_dwn.gif";

inspectionoff = new Image(); // Inactive images
inspectionoff.src = "images/btns/inspectio_up.gif";

rentingon = new Image(); // Active images
rentingon.src = "images/btns/renting_dwn.gif";

rentingoff = new Image(); // Inactive images
rentingoff.src = "images/btns/renting_up.gif";

buyingon = new Image(); // Active images
buyingon.src = "images/btns/buying_dwn.gif";

buyingoff = new Image(); // Inactive images
buyingoff.src = "images/btns/buying_up.gif";

questionson = new Image(); // Active images
questionson.src = "images/btns/qanda_dwn.gif";

questionsoff = new Image(); // Inactive images
questionsoff.src = "images/btns/qanda_up.gif";

contactson = new Image(); // Active images
contactson.src = "images/btns/contact_dwn.gif";

contactsoff = new Image(); // Inactive images
contactsoff.src = "images/btns/contact_up.gif";
}

function imgOn(imgName) {

if (document.images) {
document[imgName].src = eval(imgName + "on.src");
}
}

function imgOff(imgName) {
if (document.images) {
document[imgName].src = eval(imgName + "off.src");
}
}