/* Changes pictures when the user mouse's over the links */
function mouseOverHome() {
document.getElementById("links").src ="images/home.jpg";
}

function mouseOverServices() {
document.getElementById("links").src ="images/service.jpg";
}

function mouseOverProducts() {
document.getElementById("links").src ="images/our_products.jpg";
}

function mouseOverTestimonial() {
document.getElementById("links").src ="images/testimonial.jpg";
}

function mouseOverContact() {
document.getElementById("links").src ="images/contact_us.jpg";
}

/* Sets the default picture to the page being viewed */
function mouseOutHome() {
document.getElementById("links").src ="images/home.jpg";
}

function mouseOutServices() {
document.getElementById("links").src ="images/service.jpg";
}

function mouseOutProducts() {
document.getElementById("links").src ="images/our_products.jpg";
}

function mouseOutTestimonial() {
document.getElementById("links").src ="images/testimonial.jpg";
}

function mouseOutContact() {
document.getElementById("links").src ="images/contact_us.jpg";
}
