$(document).ready(function(){
	$(".notdestaque .lista li").click(function(){
		$(".notdestaque .lista li").removeClass("selected");
		$(this).addClass("selected");
		var idinfo = this.id.split("_");
		$(".notimg img, .notimg iframe").hide();
		$("#imgdesccarregando").fadeIn();
		$.post("ajax.php",{index_notdest: idinfo[1]},function(data){
			eval("var not = "+data);
			$("#nottitulo").text(not["titulo"]);
			$("#notcabeca").text(not["cabeca"]);
			$("#notdestlegenda").text(not["legenda"]);
			var galeriaopcao = "";
			if(not["galeria"] != ""){
				var galeriaopcao = ' | <a href="galerias.php?grupo=5&galeria='+not["galeria"]+'">imagens</a>';
			}
			$("#notcabecaopcoes").html('<a href="cadernos.php?grupo=2&noticia='+idinfo[1]+'">Ler mais</a>'+galeriaopcao);
			if(not["imgtipo"] == "Video"){
				$("#imgdesccarregando").fadeOut("normal",function(){
					$("#notdestvideo").attr("src",not["imgend"]);
					$("#notdestvideo").fadeIn();
				});
			}
			else{
				var preloadimg = new Image(323,216);
				preloadimg.src = not["imgend"];
				preloadimg.onload = function(){
					$("#imgdesccarregando").fadeOut("normal",function(){
						$("#notdestimg").attr("src",not["imgend"]+"#");
						$("#notdestimg").fadeIn();
					});
				}
			}
		});
	});
	$(".indexvideolista div").click(function(){
		$(".indexvideolista div").removeClass("selected");
		$(this).addClass("selected");
		var idinfo = this.id.split("_");
		$("#listavideoview").attr("src","http://www.youtube.com/embed/"+idinfo[1]);
	});
	$("#formindexnews").submit(function(){
		var nome = $("#nlnome").val();
		var email = $("#nlemail").val();
		if(email != ""){
			$.post("ajax.php",{nlnome: nome, nlemail: email},function(data){
				$("#respnl").text(data);
				$("#nlnome").val("");
				$("#nlemail").val("");
			});
		}
		return false;
	});
});
