$(document).ready(function(){



  	$.ajax({
			url: "carrousel.php",
			dataType: 'xml',
			type: 'GET',
			//timeout: 10000,
			success: function(data, textStatus){
				
				var html = '';
				$(data).find('NOTICIA').each(function (i) {
				html += '<li>'
				html +='<div class= "modulo">'
				html += '<a class="thickbox" href="noticia_completa.php?height='+335+'&page=noticia&id='+$(this).find('ID').text()+'"><img src="'+ $(this).find('IMAGEM').text() +'" alt="'+ $(this).find('NOME').text() + '"  class="imagem" /></a>'
				html+= '<p class="titulo">'+ $(this).find('TITULO').text()+ '</p>' 
				html += '<p class="resumo"><a class="thickbox" href="noticia_completa.php?height='+335+'&page=noticia&id='+$(this).find('ID').text()+'">' + $(this).find('RESUMO').text() + '</a></p>'
				html += '</div></li>';
				
				
				});
				$('.slide ul').html(html);
				//tb_init('a.thickbox, area.thickbox, input.thickbox');
				$(".slide").jCarouselLite({
    				btnNext: ".avancar",
     				btnPrev: ".voltar",
					auto: 700,
    				speed: 2500,
    				size:5,
					hoverPause:true
    				
				});
				tb_init('a.thickbox, area.thickbox, input.thickbox');
			
			
				
				
			}
	   })
	
	$('.avancar .voltar').click(function(e){e.preventDefault(); })
	
});
