function shownews(){
	$("news2").style.display = "block";
	$("shownews").style.display = "none";
}
function hidenews(){
	$("news2").style.display = "none";
	$("shownews").style.display = "block";
}