
$(document).ready(function() {
    $('.banner_imgs').cycle({
        fx:     'fade',
        speed:  'slow',
        delay: 3600,
        timeout: 5000,
        pager:  '#nav',
		slideExpr: 'a'

     // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
});


$(document).ready(function() {
    $('.other_logos').cycle({
        fx:     'fade',
        speed:  'slow',
        delay: 2000,
        timeout: 3800,
		slideExpr: 'img'

     // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
});




$(".galeria_b a img").each(function () {
	var $this = $(this);
	var title = $this.attr("alt");
	$this.after('<span class="caption">'+ title +'</span>');
});
