// JavaScript Document
var evento = 0;
var eventos = null;

function rotarEvento(){
	$(".eventos").find(".evento:eq("+evento+")").animate({top:150,opacity:'hide'},'slow',function(){
		$(this).css("top","0px");
	});
	if(evento < eventos-1){
		evento++;
		$(".eventos").find(".evento:eq("+evento+")").fadeIn('slow');
	}else{
		evento=0;
		$(".eventos").find(".evento:eq("+evento+")").fadeIn('slow');
	}
}
$(".eventos").ready( function(){
	
	$(".eventos").load("../calend_camara/eventos.php?aleatorio=",function(data){
		$(this).html(data);
		eventos = $(this).find(".evento").length;
		$(this).find('.evento:eq('+evento+')').fadeIn('slow',function(){
			intervaloEventos = setInterval('rotarEvento()',5000);													  
		});
		tb_init('a.thickbox');//pass where to apply thickbox
		imgLoader = new Image();// preload image
		imgLoader.src = tb_pathToImage;
	})
})