		function hideAll(exceptPos,prof){
			obj = document.getElementById("text1");
			objImg = document.getElementById("arrow1");
			pos = 1;
			while(obj && objImg){
				if(pos != exceptPos){
					obj.style.display = "none";
					if(prof != undefined){
						if(prof == 1){
							objImg.src="http://www.vivaenaustralia.com/img/notas/arrowRight.gif";
						}else{
							objImg.src="http://www.vivaenaustralia.com/img/notas/arrowRight.gif";
						}
					}else{
						objImg.src="http://www.vivaenaustralia.com/img/notas/arrowRight.gif";
					}
				}
				obj = document.getElementById("text"+(++pos));
				objImg = document.getElementById("arrow"+pos);
			}
		}

		function changeStatus(pos,prof){
			obj = document.getElementById("text"+pos);
			objImg = document.getElementById("arrow"+pos);
			if(obj){
				if(obj.style.display == "none"){
					obj.style.display = "inline";
					if(prof != undefined){
						if(prof == 1){
							objImg.src="http://www.vivaenaustralia.com/img/notas/arrowDown.gif";
						}
					}else{
						objImg.src="http://www.vivaenaustralia.com/img/notas/arrowDown.gif";
					}
				}else{
					pos = 0;
				}
			}
			hideAll(pos,prof);
		}




