Image1= new Image(134,75)
Image1.src = "images/index/formulainn_logo.gif"

Image2= new Image(259,75)
Image2.src = "images/index/inn01.jpg"

Image3= new Image(212,75)
Image3.src = "images/index/inn02.jpg"

Image4= new Image(134,35)
Image4.src = "images/index/inn03.jpg"

Image5= new Image(471,35)
Image5.src = "images/index/inn04.jpg"

button1up = new Image; button1up.src = "images/index/aboutinn_off.gif";
button1down = new Image; button1down.src = "images/index/aboutinn_on.gif";
button2up = new Image; button2up.src = "images/index/locationsinn_off.gif";
button2down = new Image; button2down.src = "images/index/locationsinn_on.gif";
button3up = new Image; button3up.src = "images/index/roomsinn_off.gif";
button3down = new Image; button3down.src = "images/index/roomsinn_on.gif";
button4up = new Image; button4up.src = "images/index/facilitiesinn_off.gif";
button4down = new Image; button4down.src = "images/index/facilitiesinn_on.gif";
button5up = new Image; button5up.src = "images/index/linksinn_off.gif";
button5down = new Image; button5down.src = "images/index/linksinn_on.gif";
button6up = new Image; button6up.src = "images/index/helpinn_off.gif";
button6down = new Image; button6down.src = "images/index/helpinn_on.gif";
button7up = new Image; button7up.src = "images/index/contactinn_off.gif";
button7down = new Image; button7down.src = "images/index/contactinn_on.gif";

function MouseOverRoutine(ButtonName)
{
   if (ButtonName=="button1") {document.button1.src = button1down.src;}
   if (ButtonName=="button2") {document.button2.src = button2down.src;}
   if (ButtonName=="button3") {document.button3.src = button3down.src;}
   if (ButtonName=="button4") {document.button4.src = button4down.src;}
   if (ButtonName=="button5") {document.button5.src = button5down.src;}
   if (ButtonName=="button6") {document.button6.src = button6down.src;}
   if (ButtonName=="button7") {document.button7.src = button7down.src;}
}

function MouseOutRoutine(ButtonName)
{
   if (ButtonName=="button1") {document.button1.src = button1up.src;}
   if (ButtonName=="button2") {document.button2.src = button2up.src;}
   if (ButtonName=="button3") {document.button3.src = button3up.src;}
   if (ButtonName=="button4") {document.button4.src = button4up.src;}
   if (ButtonName=="button5") {document.button5.src = button5up.src;}
   if (ButtonName=="button6") {document.button6.src = button6up.src;}
   if (ButtonName=="button7") {document.button7.src = button7up.src;}
}