// JavaScript Document
var offImgArray = new Array();
offImgArray["etusivu"]  = new Image (85,30);
offImgArray["tapahtumat"] = new Image (125,30);
offImgArray["historia"]  = new Image (90,30);
offImgArray["galleria"] = new Image (87,30);
offImgArray["yhteystiedot"]  = new Image (121,30);
offImgArray["linkit"]  = new Image (75,21);
offImgArray["foorumille"] = new Image (115,30);


offImgArray["etusivu"].src  = "etusivu.png";;
offImgArray["tapahtumat"].src = "tapahtumat.png";
offImgArray["historia"].src  = "historia.png";
offImgArray["galleria"].src = "galleria.png";
offImgArray["yhteystiedot"].src  = "yhteystiedot.png";
offImgArray["linkit"].src = "linkit.png";
offImgArray["foorumille"].src = "foorumille.png";


var onImgArray = new Array();
onImgArray["etusivu"]  = new Image (85,30);
onImgArray["tapahtumat"] = new Image (125,30);
onImgArray["historia"]  = new Image (90,30);
onImgArray["galleria"] = new Image (87,30);
onImgArray["yhteystiedot"]  = new Image (121,30);
onImgArray["linkit"]  = new Image (75,21);
onImgArray["foorumille"] = new Image (115,30);


onImgArray["etusivu"].src  = "etusivuMouseOver.png";;
onImgArray["tapahtumat"].src = "tapahtumatMouseOver.png";
onImgArray["historia"].src  = "historiaMouseOver.png";
onImgArray["galleria"].src = "galleriaMouseOver.png";
onImgArray["yhteystiedot"].src  = "yhteystiedotMouseOver.png";
onImgArray["linkit"].src = "linkitMouseOver.png";
onImgArray["foorumille"].src = "foorumilleMouseOver.png";

function imageOn(imgName){
	if(document.images){
		document.images[imgName].style.cursor = "pointer";
		document.images[imgName].src = onImgArray[imgName].src;
	}
}

function imageOff(imgName){
	if(document.images){
		document.images[imgName].style.cursor = "default";
		document.images[imgName].src = offImgArray[imgName].src;
	}
}
