// JavaScript Document



<!--




   var button1_up = new Image();
  button1_up.src =  "images/home.jpg"; 
   
   var button1_over = new Image();
  button1_over.src  = "images/Homedown.jpg";



   var button2_up = new Image();
  button2_up.src =  "images/Product.jpg";

   var button2_over = new Image();
  button2_over.src  = "images/Productdown.jpg";



   var button3_up = new Image();
  button3_up.src =  "images/Contact.jpg";

   var button3_over = new Image();
  button3_over.src  = "images/Contactdown.jpg";



   var button4_up = new Image();
  button4_up.src =  "images/OrderNow.jpg";

   var button4_over = new Image();
  button4_over.src  = "images/OrderNowdown.jpg";


   var button5_up = new Image();
  button5_up.src =  "images/Donate.jpg";

   var button5_over = new Image();
  button5_over.src  = "images/DonateDown.jpg";


function over_button() {
  if (document.images) {
    document["buttonOne"].src = button1_over.src
  }
}


function up_button() {
  if (document.images) {
    document["buttonOne"].src = button1_up.src
  }
}



function over_button2() {
  if (document.images) {
    document["buttonTwo"].src = button2_over.src
  }
}


function up_button2() {
  if (document.images) {
    document["buttonTwo"].src = button2_up.src
  }
}


function over_button3() {
  if (document.images) {
    document["buttonThree"].src = button3_over.src
  }
}


function up_button3() {
  if (document.images) {
    document["buttonThree"].src = button3_up.src
  }
}


function over_button4() {
  if (document.images) {
    document["buttonFour"].src = button4_over.src
  }
}


function up_button4() {
  if (document.images) {
    document["buttonFour"].src = button4_up.src
  }
}

function over_button5() {
  if (document.images) {
    document["buttonFive"].src = button5_over.src
  }
}


function up_button5() {
  if (document.images) {
    document["buttonFive"].src = button5_up.src
  }
}

-->