HomeOff = new Image(130,35)
HomeOff.src = "_images/nav_home.gif"
HomeOn = new Image(130,35)
HomeOn.src = "_images/nav_home2.gif"

SkisOff = new Image(130,35)
SkisOff.src = "_images/nav_skis.gif"
SkisOn = new Image(130,35)
SkisOn.src = "_images/nav_skis2.gif"

SnowboardsOff = new Image(130,35)
SnowboardsOff.src = "_images/nav_snowboards.gif"
SnowboardsOn = new Image(130,35)
SnowboardsOn.src = "_images/nav_snowboards2.gif"

BikesOff = new Image(130,35)
BikesOff.src = "_images/nav_bikes.gif"
BikesOn = new Image(130,35)
BikesOn.src = "_images/nav_bikes2.gif"

DirectionsOff = new Image(130,35)
DirectionsOff.src = "_images/nav_directions.gif"
DirectionsOn = new Image(130,35)
DirectionsOn.src = "_images/nav_directions2.gif"

SpecialsOff = new Image(130,35)
SpecialsOff.src = "_images/nav_specials.gif"
SpecialsOn = new Image(130,35)
SpecialsOn.src = "_images/nav_specials2.gif"

LinksOff = new Image(130,35)
LinksOff.src = "_images/nav_links.gif"
LinksOn = new Image(130,35)
LinksOn.src = "_images/nav_links2.gif"

ContactOff = new Image(130,35)
ContactOff.src = "_images/nav_contact.gif"
ContactOn = new Image(130,35)
ContactOn.src = "_images/nav_contact2.gif"

function SwapHome() { document.home.src = HomeOn.src; return true; }
function SwapHomeBack() { document.home.src = HomeOff.src; return true; }

function SwapSkis() { document.skis.src = SkisOn.src; return true; }
function SwapSkisBack() { document.skis.src = SkisOff.src; return true; }

function SwapSnowboards() { document.snowboards.src = SnowboardsOn.src; return true; }
function SwapSnowboardsBack() { document.snowboards.src = SnowboardsOff.src; return true; }

function SwapBikes() { document.bikes.src = BikesOn.src; return true; }
function SwapBikesBack() { document.bikes.src = BikesOff.src; return true; }

function SwapDirections() { document.directions.src = DirectionsOn.src; return true; }
function SwapDirectionsBack() { document.directions.src = DirectionsOff.src; return true; }

function SwapSpecials() { document.specials.src = SpecialsOn.src; return true; }
function SwapSpecialsBack() { document.specials.src = SpecialsOff.src; return true; }

function SwapLinks() { document.links.src = LinksOn.src; return true; }
function SwapLinksBack() { document.links.src = LinksOff.src; return true; }

function SwapContact() { document.contact.src = ContactOn.src; return true; }
function SwapContactBack() { document.contact.src = ContactOff.src; return true; }