$(function(){
  $('.coupon_overlay[rel]').overlay();
  $('.packet_overlay[rel]').overlay();
  $('.report_overlay[rel]').overlay();
  
  $('.promoframe blockquote').hide().first().show();

  $('.promoframe').bind('nextQuote', function(){
    var currentQuote = $(this).find('blockquote:visible');
    if (currentQuote.next().length > 0) {
      var nextQuote = currentQuote.hide().next()
      nextQuote.show().siblings('img').attr('src',nextQuote.attr('rel'));
    } else {
      var nextQuote = $('.promoframe blockquote').hide().first()
  nextQuote.show().siblings('img').attr('src',nextQuote.attr('rel'));
    }
  });
  
  $('.promoframe').bind('prevQuote', function(){
    var currentQuote = $(this).find('blockquote:visible');
    if (currentQuote.prev().length > 0) {
      currentQuote.hide().prev().show();    
    } else {
      $('.promoframe blockquote').hide().last().show();
    }
  });

  setInterval("$('.promoframe').trigger('nextQuote')", 10000);

  $('a.next').click(function(){
    $('.promoframe').trigger('nextQuote');
    return false;
  });
  $('a.prev').click(function(){
    $('.promoframe').trigger('prevQuote');
    return false;
  });
});