$(document).ready(function () {

  // Main tabs/slideshow
  $(".slides").tabs({ fx: { opacity: 'toggle' } }).tabs('rotate', 5000);
  
  // Video
  
  $(".slides #video h1 a").click(function(){
      $("#fakebox").show();
      $("#boxcontent").show();
      $("#fakebox, #boxcontent .close").click(function(){
          $("#fakebox").hide();
          $("#boxcontent").hide();
      });

  });
  
  // On the horizon tabs
  $(".features li h3 a").click(function(event) {

    // Reset
    $(".features .end div").hide(); // Hide all slides
    $(".features ul li").removeClass("on");
    
    // Set
    var slideId = $(this).attr("href");
    $(slideId).fadeIn();
    $(this).parents("li").addClass("on");
    event.stopPropagation();

  });
  
  $("#amicasts").load("/proxy.php", {}, function(){
      $("#amicasts div:nth-child(5)").addClass("end");
      $("#amicasts").prepend("<h2>Popular Amicasts <span><a href=\"http://www.amicast.com\">View more Amicasts</a></span></h2>");
  });

});
