/*****************************
 path2-home rollover
 ***************************/

 Image1= new Image(275,224)
Image1.src = "./images/path2-home.jpg"

Image2 = new Image(275,224)
Image2.src = "./images/path_faces_worship_over.jpg"

Image3 = new Image(275,224)
Image3.src = "./images/path_faces_learning_over.jpg"

Image4= new Image(275,224)
Image4.src = "./images/path_faces_healing_over.jpg"

Image5= new Image(275,224)
Image5.src = "./images/path_faces_justice_over.jpg"

Image6= new Image(275,224)
Image6.src = "./images/path_faces_spirit_over.jpg"

Image7= new Image(275,224)
Image7.src = "./images/path_faces_music_over.jpg"

function over_music() {
document.path2_home.src = Image7.src; return true;
}

function over_spirit() {
document.path2_home.src = Image6.src; return true;
}

function over_justice() {
document.path2_home.src = Image5.src; return true;
}

function over_healing() {
document.path2_home.src = Image4.src; return true;
}
 
function over_learning() {
document.path2_home.src = Image3.src; return true;
}

function over_worship() {
document.path2_home.src = Image2.src; return true;
}

function original() {
document.path2_home.src = Image1.src; return true;
}


