
function highlight_latest() {

	/*
	var hids = readCookie(uri);
	if(hids && hids != latest_hids) {
		var old_hids_list = hids.split(/,/);
		for(i = 0; i < latest_hids_list.length; i++) {
			var is_new = true;
			for(j = 0; j < old_hids_list.length; j++) {
				if(latest_hids_list[i] == old_hids_list[j]) {					
					is_new = false;
					break;
				}
			}
			if(is_new == true) {
				new_headline(latest_hids_list[i]);		
			}
		}		
	}
	createCookie(uri, latest_hids, 14);
	*/
	//eraseCookie(uri);
}

function new_headline(fid) {
	/*
	var id = 'new' + fid;
	$(id).show();
	*/
}