	window.onload = function (){
		var id = new Array(7);
		id[0] = "css12";
		id[1] = "css13";
		id[2] = "css14";
		id[3] = "css15";
		id[4] = "css16";
		id[5] = "css17";
		id[6] = "css18";
		id[7] = "css19";
		for(i=0;i<8;i++){
			document.getElementById(id[i]).style.display = "none";
		}
	}
	function mOver(mOid){
		document.getElementById(mOid).style.display = "block";
	}
	function mOut(mOid){
		document.getElementById(mOid).style.display = "none";
	}