function hidePanes() {
  $("#splash-links a").removeClass('current');
  $("#splash-pane a").hide();
}
function linkClasses() {
  $("#splash-links a").removeClass('current');
  var id = $(this).attr('id');
  $('#link-'+id).addClass('current');
}
$(document).ready(function() {
  $("#splash-pane").cycle({
    fx: "fade",
    timeout: 5000,
    before: linkClasses
  });
  $("#splash-links a").hover(function() {
    $("#splash-pane").cycle("stop");
    target_id = "#" + $(this).attr("href");
    $(target_id).removeAttr("style");
    hidePanes();
    $("#splash-links a").removeClass("current");
    $(this).addClass("current");
    $(target_id).fadeIn("fast");
  });
});