VOOV.SlideShow.Construct({
  paused:false, 
  button_activeclass:"imagelink_active", 
  animate_interval: 6000, 
  animatable: true, 
  enable_friendlyuri: false
  });
  
VOOV.SlideShow.PauseCallback = function(paused) {
  if (paused == true) {
    $("#pause_on").show();
    $("#pause_off").hide();
  } else {
    $("#pause_on").hide();
    $("#pause_off").show();
  }
}

VOOV.SlideShow.OnSwitchCallback = function(index) {
  $("a.SlideShowControlId").each(function() {
    if($(this).attr("rel") == index) {
      $(this).html("<img src=\"http://" + document.domain + "/images/buttons/btn_bubble_on.gif\" alt=\"\" />");
    } else {
      $(this).html("<img src=\"http://" + document.domain + "/images/buttons/btn_bubble.gif\" alt=\"\" />");
    }
  });
}
$(document).ready(function() {
  $("#back_to_top").click(function() {
      $('html, body').animate({scrollTop: '0px'}, 500);
      return false;
  });
  $("#promo_cover .main_cover:first").show();
  
  Cufon.replace('.about_list_title h3');
  Cufon.replace('.promo_list_title h3');
  Cufon.replace('.cover_text h2');
});
