// JavaScript Document
function NoticiaDestaque(id,titulo,idImagem,legenda,linkPag){
	this.id = id;
	this.titulo = titulo;
	this.idImagem = idImagem;
	this.legenda = legenda;
	this.linkPag = linkPag;
	this.noticiaRotativa = noticiaRotativa;
}
function VideoDestaque(id,titulo){
	this.id = id;
	this.titulo = titulo;
	this.videoRotativo = videoRotativo;
}

function fadein(i,id){
	document.getElementById(id).style.filter = "alpha(opacity="+i+")";
	document.getElementById(id).style.opacity = "."+(i-1)+"";
}

var notDest = new Array(); //Vetor para as noticiasDestaque, onde cada posicao contem um objeto
var contNoticia = 0;
var controleVelocidade = 0;
var intervalo = null;
function noticiaRotativa(posicao){
	if (posicao != null){
		contNoticia = posicao;
		clearTimeout(intervalo);
		controleVelocidade = 0;
		noticiaRotativa();
	}else{
		intervalo = window.setTimeout(function(){
				document.getElementById("tituloNoticia").innerHTML = notDest[contNoticia].titulo;
				document.getElementById("imagemNoticia").src = "upload/noticiaImagens/"+notDest[contNoticia].idImagem+".jpg";
				document.getElementById("imagemNoticia").onload = function(){
					var velocidade = Math.round(100/100);
					var timer = 0;
					for(i = 0; i < 100; i++){
						setTimeout("fadein("+i+",'imagemNoticia')",(timer * velocidade));
						timer = timer + 8;
					}
				};
				document.getElementById("imagemNoticia").alt = notDest[contNoticia].legenda != "null" ? notDest[contNoticia].legenda : "";
				document.getElementById("imagemNoticia").title = notDest[contNoticia].legenda != "null" ? notDest[contNoticia].legenda : "";
				document.getElementById("marcadorN"+(contNoticia+1)).className = "atual";
				for (i = 1; i <= notDest.length; i++){
					if (i != contNoticia+1)
						document.getElementById("marcadorN"+(i)).className = "none";
				}
				var a = document.getElementById("noticia").getElementsByTagName("a");
				for (i = 0 ; i < a.length; i++){
					if (a[i].className == "linkNoticia" || a[i].className == "preto")a[i].href = notDest[contNoticia].linkPag;
				}
				contNoticia++;
				if (contNoticia == notDest.length)contNoticia = 0;
				noticiaRotativa();
			},(controleVelocidade == 0 ? controleVelocidade = 1 : 5500)
		);
	}
}

var vidDest = new Array(); //Vetor para os videosDestaque, onde cada posicao contem um objeto
function videoRotativo(posicao){
	var c = posicao == null ? 0 : posicao;
	document.getElementById("tituloVideo").innerHTML = vidDest[c].titulo;
	document.getElementById("imagemVideo").src = "http://www.redeclaret.com.br/upload/mediacenter/"+vidDest[c].id+".jpg";
	document.getElementById("imagemVideo").alt = vidDest[c].titulo;
	var a = document.getElementById("video").getElementsByTagName("a");
	for (i = 0; i < a.length; i++){
		if (a[i].className == "linkVideo"){
			a[i].href = "http://www.redeclaret.com.br/videos/?vdId="+vidDest[c].id;
		}
	}		
	document.getElementById("marcadorV"+(c+1)).className = "atual";
	for (i = 0; i < vidDest.length; i++){
		if (i != c)document.getElementById("marcadorV"+(i+1)).className = "none";
	}
}