<!--

imageArray = new Array("image01","image02","image03","image04","image05","image06","image07","image08");

function show(no) {
	id = "image" + no;
	if(document.all){
		imageobj = document.all(id).style;
	}
	else if(document.getElementById) {
		imageobj = document.getElementById(id).style;
	}
	if(imageobj) {
		imageobj.display='';
	    for (i = 0; i < imageArray.length; i++) {
			if ( imageArray[i] != id) {
		        hide(imageArray[i]);
			}
	    }
	}


}

function hide(id) {
	if(document.all){
		imageobj = document.all(id).style;
	}
	else if(document.getElementById) {
		imageobj = document.getElementById(id).style;
	}
	if(imageobj) {
		imageobj.display='none';
	}
}
// -->
