// Some variables

var base= "temp/amadeus/"
var nrm = new Array();
var omo = new Array();
var stuff = new Array('thn_pred_01','thn_pred_02','thn_pred_03','thn_pred_04');

// Pre-load part.

if (document.images)
{
	for (i=0;i<stuff.length;i++)
	{
		nrm[i] = new Image;
		nrm[i].src = base + stuff[i] + "_off.jpg"
		omo[i] = new Image;
		omo[i].src = base + stuff[i] + "_on.jpg";
	}
}


// The functions: first mouseover, then mouseout

function over(no)
{
	if (document.images)
	{
		document.images[stuff[no]].src = omo[no].src
	}
}

function out(no)
{
	if (document.images)
	{
		document.images[stuff[no]].src = nrm[no].src
	}
}
