I am using toggle() for 'slideshow pack information of travelle' check code here:
HTML:
www2.mappaturismo.com.br
JAVASCRIPT:
function rota() {
$(".col-a div.row-a-dois:last").toggle(
function(){ $(this).fadeIn("slow") }, function(){ $(this).fadeOut("slow") }
);
$(".col-a div.row-a-tres:last").toggle(
function(){ $(this).fadeIn("slow") }, function(){ $(this).fadeOut("slow") }
);
$(".col-a div.row-a-dois:first").toggle(
function(){ $(this).fadeIn("slow") }, function(){ $(this).fadeOut("slow") }
);
$(".col-a div.row-a-tres:first").toggle(
function(){ $(this).fadeIn("slow") }, function(){ $(this).fadeOut("slow") }
);
}
$(function() {
setInterval( "rota()", 5000 );
});