$(document).ready(function(){
	$("#container #middle .cover .item:first").fadeIn(500);
	$("input[name='themes[]']").uniform();
	
	Cufon.replace("h2, h3");
});

VOOV.SlideShow.Construct({
  paused:false, 
  button_activeclass:"imagelink_active", 
  animate_interval: 5000, 
  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/bubble_on.gif\" alt=\"\" />");
    } else {
      $(this).html("<img src=\"http://" + document.domain + "/images/bubble.gif\" alt=\"\" />");
    }
  });
}
