function display (sID) {
	oObj = document.getElementById(sID);
		if (oObj) {
		oObj.style.display='inline';
		}
}

function hide (sID) {
	oObj = document.getElementById(sID);
		if (oObj) {
		oObj.style.display='none';
		}

}


// function for news
function get_mnbottom(id) {
	for (i=1;i<=10;i++) {
		if (id==i) {
			//display("content"+i);
			document.getElementById("menu"+i).className='footer_de';
		}else{
			//hide("content"+i);
			document.getElementById("menu"+i).className='footer';
		}
	}
}

// end

