Image1= new Image(200,94)
Image1.src = "images/index/magicembroidery.gif"

button1up = new Image; button1up.src = "images/index/magic_about_off.gif";
button1down = new Image; button1down.src = "images/index/magic_about_on.gif";
button2up = new Image; button2up.src = "images/index/magic_training_off.gif";
button2down = new Image; button2down.src = "images/index/magic_training_on.gif";
button3up = new Image; button3up.src = "images/index/magic_kits_off.gif";
button3down = new Image; button3down.src = "images/index/magic_kits_on.gif";
button4up = new Image; button4up.src = "images/index/magic_products_off.gif";
button4down = new Image; button4down.src = "images/index/magic_products_on.gif";
button5up = new Image; button5up.src = "images/index/magic_members_off.gif";
button5down = new Image; button5down.src = "images/index/magic_members_on.gif";
button6up = new Image; button6up.src = "images/index/magic_distrib_off.gif";
button6down = new Image; button6down.src = "images/index/magic_distrib_on.gif";
button7up = new Image; button7up.src = "images/index/magic_stitchgloss_off.gif";
button7down = new Image; button7down.src = "images/index/magic_stitchgloss_on.gif";
button8up = new Image; button8up.src = "images/index/magic_say_off.gif";
button8down = new Image; button8down.src = "images/index/magic_say_on.gif";
button9up = new Image; button9up.src = "images/index/magic_tell_off.gif";
button9down = new Image; button9down.src = "images/index/magic_tell_on.gif";
button10up = new Image; button10up.src = "images/index/magic_links_off.gif";
button10down = new Image; button10down.src = "images/index/magic_links_on.gif";
button11up = new Image; button11up.src = "images/index/magic_contact_off.gif";
button11down = new Image; button11down.src = "images/index/magic_contact_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;}
   if (ButtonName=="button8") {document.button8.src = button8down.src;}
   if (ButtonName=="button9") {document.button9.src = button9down.src;}
   if (ButtonName=="button10") {document.button10.src = button10down.src;}
   if (ButtonName=="button11") {document.button11.src = button11down.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;}
   if (ButtonName=="button8") {document.button8.src = button8up.src;}
   if (ButtonName=="button9") {document.button9.src = button9up.src;}
   if (ButtonName=="button10") {document.button10.src = button10up.src;}
   if (ButtonName=="button11") {document.button11.src = button11up.src;}   
}