/*function getPhotos(programa,itens,caminho){
	
	var loading='<li style="list-style-type:none; width:102px; height:102px; text-align:center; line-height:102px; margin:0 3px; 0 0; background-image:url(../images/fundo-thumb.png); background-repeat:no-repeat;"><img src="'+caminho+'images/lightbox-ico-loading.gif" style="padding:4px; border:0;" /></li>';
	
	document.getElementById('listaFotos').innerHTML = loading;
	
	var listaFotos = new Array();
	$(function() {
		$.ajax({
		type: "GET",
		url: caminho+"includes/fotos/fotos.asp?p=b_"+programa+"&i="+itens,
		dataType: "html",
		contentType: "application/x-www-form-urlencoded; charset=UTF-8",
		success: function(xml) {
			var x = 0;
			$.xmlDOM(xml).find('foto').each(function(){
				listaFotos[x] = new Array();
				listaFotos[x]["imagem"]= $(this).attr('imagem');
				listaFotos[x]["descricao"]= $(this).attr('descricao');
				x++;
		   });
			fotoHtml = '';
			for (x=0;x<listaFotos.length;x++){
				fotoHtml +='<li><a href="'+caminho+'_arqs/fotos/ampliadas/'+listaFotos[x]["imagem"]+'"><img src="'+caminho+'_arqs/fotos/thumbs/'+listaFotos[x]["imagem"]+'"/></a></li>';
			}
			document.getElementById('listaFotos').innerHTML = fotoHtml;
			aplyEffect();
		}});
	});
}*/

function aplyEffect(){
	$(function() {
		$(".galeriaFotos").jCarouselLite({
			btnNext: ".next",
			btnPrev: ".prev",
			visible: 7
		});
		$('#galeriaFotos a').lightBox({fixedNavigation:true});
		document.getElementById('listaFotos').style.visibility = 'visible';
	});	
}
