var base= "images/CDL_";
var base1= "images/CDL_";
var nrm = new Array();
var omo = new Array();
var onc = new Array();
var flp = new Array();
var stuff = new Array('menu0','menu1','menu2','menu3','menu4','menu5','menu6');

// Pre-load part.

if (document.images)
{
	for (i=1;i<stuff.length;i++)
	{
	//	nrm[i] = new Image;
	//	nrm[i].src = base + stuff[i] + ".jpg"
	//	omo[i] = new Image;
	//	omo[i].src = base + stuff[i] + "_msover.jpg";
	 // onc[i] = new Image;
	//	onc[i].src = base + stuff[i] + "_msdown.jpg";
	}
}


// The functions: first mouseover, then mouseout

function over(no)
{
	if (document.images)
	{
		document.images[stuff[no]].src = "images/CDL_msover.jpg"
	//	document.images[stuff[no]].src = omo[no].src

	}
}

function down(no)
{
	if (document.images)
	{
//		document.images[stuff[no]].src = onc[no].src
	}
}

function out(no)
{
	if (document.images)
	{
	//	document.images[stuff[no]].src = nrm[no].src
		 document.images[stuff[no]].src = "images/CDL_ms.jpg"
	}
}