function important_news(id) {
	var i;
	for(i = 1; i <= 4; i++) {
		$('#Important_Link_' + i).css({background:'#ffffff'});
		$('#Important_' + i).hide();
	}
	
	$('#Important_Link_' + id).css({background:'#f4f4f4'});
	$('#Important_' + id).fadeIn(800);
}
