  //-- Desabilita o números
	function DisableImage(){
		
		document.getElementById('IMG_Noticia1').src = "Imagens/Noticias/Slide/IMG_1.png";
		document.getElementById('IMG_Noticia2').src = "Imagens/Noticias/Slide/IMG_2.png";
		document.getElementById('IMG_Noticia3').src = "Imagens/Noticias/Slide/IMG_3.png";
		document.getElementById('IMG_Noticia4').src = "Imagens/Noticias/Slide/IMG_4.png";		
	}
	
	
  //-- Habilita o número correto
	function Verificar() {
		
		var Noticia = document.getElementById('Numero').innerHTML;	
		
		
		if (Noticia == "1/4") {
			DisableImage();
			document.getElementById('IMG_Noticia1').src = "Imagens/Noticias/Slide/IMG_1s.png";		
		}
		if (Noticia == "2/4") {
			DisableImage();
			document.getElementById('IMG_Noticia2').src = "Imagens/Noticias/Slide/IMG_2s.png";		
		}
		if (Noticia == "3/4") {
			DisableImage();
			document.getElementById('IMG_Noticia3').src = "Imagens/Noticias/Slide/IMG_3s.png";		
		}
		if (Noticia == "4/4") {
			DisableImage();
			document.getElementById('IMG_Noticia4').src = "Imagens/Noticias/Slide/IMG_4s.png";		
		}	
	}
	
	
  //-- Saber qual foi o a notícia selecionada
	function Mudar1(){	
		var Noticia = document.getElementById('Numero').innerHTML;		

		if (Noticia == "2/4") {
			document.getElementById('prev').click();	
		}
		if (Noticia == "3/4") {
			document.getElementById('prev').click();
			document.getElementById('prev').click();	
		}
		if (Noticia == "4/4") {
			document.getElementById('next').click();	
		}
	}
	function Mudar2(){	
		var Noticia = document.getElementById('Numero').innerHTML;		

		if (Noticia == "1/4") {
			document.getElementById('next').click();	
		}
		if (Noticia == "3/4") {
			document.getElementById('prev').click();
		}
		if (Noticia == "4/4") {
			document.getElementById('next').click();
			document.getElementById('next').click();	
		}
	}
	function Mudar3(){	
		var Noticia = document.getElementById('Numero').innerHTML;		

		if (Noticia == "1/4") {
			document.getElementById('next').click();
			document.getElementById('next').click();	
		}
		if (Noticia == "2/4") {
			document.getElementById('next').click();
		}
		if (Noticia == "4/4") {
			document.getElementById('prev').click();	
		}
	}
	function Mudar4(){	
		var Noticia = document.getElementById('Numero').innerHTML;		

		if (Noticia == "1/4") {
			document.getElementById('prev').click();	
		}
		if (Noticia == "2/4") {
			document.getElementById('next').click();
			document.getElementById('next').click();	
		}
		if (Noticia == "3/4") {
			document.getElementById('next').click();	
		}
	}
