var nome;
function mudaimg(img,wi,he)
{
	$("img#grande").fadeOut(150, function() {
											$("#foto_grande_noticia").html("<img id=\"grande\" src=\""+img+"\" width=\""+wi+"\" alt=\"\" />");
											nome = img; // seta variavel global
											});
	$("img#grande").fadeIn(150);
}

function carregaimg(img,wi,he)
{
	$("#foto_grande_noticia").html("<img id=\"grande\" src=\""+img+"\" width=\""+wi+"\" alt=\"\" />");
	nome = img; // seta variavel global
}
function mostralegenda(num)
{
	if(num != '')
	$("#legendafotos_noticia").html("<p>"+num+"</p>");
}
function mudaimg_pop(img,wi,he)
{
	$("img#grande_pop").fadeOut(150, function() {
											$("#cont_interno").html("<img id=\"grande_pop\" src=\""+img+"\" width=\""+wi+"\" height=\""+he+"\" alt=\"\" />");
											nome = img; // seta variavel global
											});
	$("img#grande_pop").fadeIn(150);
}

function carregaimg_pop(img,wi,he)
{
	$("#cont_interno").html("<img id=\"grande_pop\" src=\""+img+"\" width=\""+wi+"\" height=\""+he+"\" alt=\"\" />");
	nome = img; // seta variavel global
}
function mostralegenda_pop(num)
{
	if(num != '')
	$("#legendafotos_noticia_pop").html("<p>"+num+"</p>");
}
function amigo(caminho)
{
	var w = window.open(caminho,'','height=280,width=325');
	w.moveTo(200,70);
}
function pop_show()
{
	$("#comb_popup").show("normal");
	var h = $(document).height();
	$("#fade").show();
	$("#cont_interno").html("<img id=\"grande_pop\" src=\""+document.images['grande'].src+"\" alt=\"\" />");
	if(document.getElementById("legendafotos_noticia"))
		mostralegenda_pop($("#legendafotos_noticia").html());
	$("#fade").height(h); 
}
function pop_close()
{
	$("#comb_popup").hide("normal",function (){$("#fade").hide();});
}
function AbrePopImprimir(UrlPagI,NameI,Wi,He,scrolling) {
if (!scrolling) { scrolling = 'auto' }
 PopImprimiNoticia = window.open(UrlPagI,NameI,'width='+Wi+',height='+He+',scrollbars=yes,toolbar=no,location=no,status=no,menubar=no,resizable=no,left=100,top=50');
}

var image = Array();
$(document).ready(function(){
				   $(".img-alb img").each(function(i){					
												image[i] = i;
											});	
				   });
navegacao = {
	j: 0,
	legenda: '',
	setjota: function(j)
		{
			navegacao.j = j;
		},
	setlegenda: function(legenda)
		{
			navegacao.legenda = legenda;
		}, 
	direita: function()
		{	
			if(navegacao.j < (image.length -1))
			{
				navegacao.j++;
				$(".img-alb img").each(function(i){
													if(i == image[navegacao.j])
													{
														navegacao.src = this.src;
														return false;
													}
												});		
				$("#cont_interno").html("<img id=\"grande_pop\" src=\""+navegacao.src+"\" alt=\"\" />");
				mostralegenda_pop(navegacao.legenda);
				
			}
		},	
	esquerda: function()
		{
			if(navegacao.j >0)
			{
				navegacao.j--;
				$(".img-alb img").each(function(i){
													if(i == image[navegacao.j])
													{
														navegacao.src = this.src;
														return false;
													}
												});		
				$("#cont_interno").html("<img id=\"grande_pop\" src=\""+navegacao.src+"\" alt=\"\" />");
				mostralegenda_pop(navegacao.legenda);
			}
		}
}