// JavaScript Document

one_ita = new Image(80, 60);
        one_ita.src = "../images1/ita-click.jpg";
two_ita = new Image(80, 60);
        two_ita.src = "../images1/ita-button.jpg";
three_ita = new Image(80, 60);
		three_ita.src = "../images1/ita-hover.jpg";
one_eng = new Image(80, 60);
        one_eng.src = "./images1/jack-onClick.jpg";
two_eng = new Image(80, 60);
        two_eng.src = "./images1/jack-button.jpg";
three_eng = new Image(80, 60);
		three_eng.src = "./images1/jack-hover.jpg";
function switchThisITA() {
 	document["ita"].src=one_ita.src;
}
function over_buttonITA() {
    document["ita"].src = three_ita.src
}
function switchThis1ITA() { 
	document["ita"].src=two_ita.src;
}

function switchThisENG() {
	document["eng"].src=one_eng.src;
}
function over_buttonENG() {
	document["eng"].src=three_eng.src;
}
function switchThis1ENG() { 
	document["eng"].src=two_eng.src;
}