$(document).ready(function() {
  $(".more-about-ben").click(function() {
    var target=$(".splash img:visible");
    $(".splash").css("background-image","url("+target.attr("src")+")");
    target.hide();
    $(".splash .benPhoto").fadeIn();
    
    $(".cindi,.general p:not(:first)").fadeOut(function() {
      $(".ben").fadeIn(function() {
        $("html,body").scrollTo(".splash",250);
      });
    });
    return false;
  });
  
  $(".more-about-cindi").click(function() {
    var target=$(".splash img:visible");
    $(".splash").css("background-image","url("+target.attr("src")+")");
    target.hide();
    $(".splash .cindiPhoto").fadeIn();
    
    $(".ben,.general p:not(:first)").fadeOut(function() {
      $(".cindi").fadeIn(function() {
        $("html,body").scrollTo(".splash",250);
      });
    });
    return false;
  });
});