Image1= new Image(119,111)
Image1.src = "images/index/01.jpg"

Image2= new Image(160,111)
Image2.src = "images/index/02.jpg"

Image3= new Image(334,111)
Image3.src = "images/index/03.jpg"

Image4= new Image(119,89)
Image4.src = "images/index/04.jpg"

Image5= new Image(334,89)
Image5.src = "images/index/05.jpg"

Image6= new Image(119,64)
Image6.src = "images/index/06.jpg"

Image7= new Image(334,64)
Image7.src = "images/index/07.jpg"

Image8= new Image(119,51)
Image8.src = "images/index/08.jpg"

Image9= new Image(334,51)
Image9.src = "images/index/09.jpg"

Image10= new Image(119,65)
Image10.src = "images/index/10.jpg"

Image11= new Image(334,65)
Image11.src = "images/index/11.jpg"

button1up = new Image; button1up.src = "images/index/about_off.jpg";
button1down = new Image; button1down.src = "images/index/about_on.jpg";
button2up = new Image; button2up.src = "images/index/locations_off.jpg";
button2down = new Image; button2down.src = "images/index/locations_on.jpg";
button3up = new Image; button3up.src = "images/index/rooms_off.jpg";
button3down = new Image; button3down.src = "images/index/rooms_on.jpg";
button4up = new Image; button4up.src = "images/index/facilities_off.jpg";
button4down = new Image; button4down.src = "images/index/facilities_on.jpg";
button5up = new Image; button5up.src = "images/index/links_off.jpg";
button5down = new Image; button5down.src = "images/index/links_on.jpg";
button6up = new Image; button6up.src = "images/index/help_off.jpg";
button6down = new Image; button6down.src = "images/index/help_on.jpg";
button7up = new Image; button7up.src = "images/index/contact_off.jpg";
button7down = new Image; button7down.src = "images/index/contact_on.jpg";

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;}
}