// slideshow na home comum
/*
$(document).ready(function($) {
  jQuery.each($('.steps'), function() {
    $(this).find('.all-steps').cycle({
      fx: 'fade', 
      delay: 10000,
      pager:  '.step-title',
      pagerAnchorBuilder: function(idx, slide) {
          // return sel string for existing anchor
          return '.step-title a:eq(' + (idx) + ')';
      }
    });
  });
});
*/

function cycle_features(id)
{
  $(document).ready(function($) {
    $('#' + id).find('.all-steps').cycle({
    fx: 'scrollLeft',
    speed: 900,
    timeout: 0,
    pager:  '.' + id,
    cleartypeNoBg: true,
    pagerAnchorBuilder: function(idx, slide) {
    // return sel string for existing anchor
    return '.' + id + ' a:eq(' + (idx) + ')';
    }
    });
  });
}

// inicializa facebox
$(document).ready(function($) {
  $('a[rel*=facebox]').facebox({loadingImage : 'images/facebox/loading.gif', closeImage : 'images/facebox/closelabel.gif'});
});

