$last_id = 0;
function mostrar(id){	
	$("a#"+$last_id).css("color","#666666");
	$("a#"+id).css("color","red");
	var div = $("div[id='"+ id + "']");
	if ($last_id != 1 && id !=4 && $last_id != 58 && $last_id != 67 && $last_id != 95){
		if ($last_id != 0) {
			if ($last_id != 2) {
				$("div[id='" + $last_id + "']").hide();
			} else {
				$("a#4").css("color","#666666");
				$("div[id='2']").hide();
				$("div[id='4']").hide();
			}
		}
	}
	if (id!=4)
		$last_id = id;
		
	if (div.css("display") == "none")	{
		div.show();
	} else {		
		div.hide();
		if (id==2) {
			if ($("div[id='4']").css("display") != "none")
				mostrar('4');
		}
	}
}

