function buildMenu(){

	//-------------------------------
	//	folder array
	//-------------------------------
	aFolders = Array();
	aFolders.push("contact");
	aFolders.push("culture");
	aFolders.push("solutions");

	//-------------------------------
	//	folder array
	//-------------------------------
	aLinks = Array();
	aLinks.push("contact.html");
	aLinks.push("culture.html");
	aLinks.push("solutions.html");

	//-------------------------------
	//	image count
	//-------------------------------
	count = 15;

	//-------------------------------
	//	image array
	//-------------------------------
	aImages = Array();

	for(n = 0; n < aFolders.length; n++){
		//----------------------------------
		// set array
		//----------------------------------
		array = aFolders[n];
		array = Array();
		for(i = 1; i <= 15; i++){
			image = "images/" + aFolders[n] + "/" + aFolders[n];
			image += i < 10 ? "-on000" + i : "-on00" + i;
			image += ".gif";
			array.push(image);

			//obj_imgList = window.document.getElementById("imgList");
			//obj_imgList.innerHTML += "<img src='images/" + image + "'><br />";	
		}

		aImages.push(array);

		img = "<a href='" + aLinks[n] + "' ";
		img += "onmouseover='return rollOver(" +  n + "),showStatus(\"" + aFolders[n] + "\");' ";
		img += "onmouseout='return rollOut(" +  n + "),showStatus(\"\");' ";
		img += "border='0'>";
		img += "<input type=hidden name=imgCount_" + [n] + " id=imgCount_" + [n] + " value=0>"
		img += "<img src='" + array[0] + "'  name=img_" + [n] + " border='0'>";
		img += "</a>";
		img += "<img src='images/space.gif' width=7 border=0>";

		objMenu = window.document.getElementById("imgList");
		objMenu.innerHTML += img;

	}
}

// animate
//--------------------------------------------------------
function rollOver(n){
	imgCount = "imgCount_" + n;
	imgName = "img_" + [n];

	objImage = window.document.getElementById(imgName);
	objCount = window.document.getElementById(imgCount);

	if(objCount.value < 15){
		objImage.src = aImages[n][objCount.value];
		objCount.value = parseInt(objCount.value) + 1;
		setTimeout("rollOver(" + n + ")",1);
	}
}

// un animate
//--------------------------------------------------------
function rollOut(n){
	imgCount = "imgCount_" + n;
	imgName = "img_" + [n];

	objImage = window.document.getElementById(imgName);
	objCount = window.document.getElementById(imgCount);

	if(objCount.value > 1){
		objCount.value = parseInt(objCount.value) - 1;
		objImage.src = aImages[n][objCount.value];
		setTimeout("rollOut(" + n + ")",1);
	}
}

// footer text 
//--------------------------------------------------------
function showStatus(copy){
    window.status = copy ;
    return true ;
}