jQuery(document).ready(function($) {

  $(".slider a.contact").click(function () {
    // show the target of the link and hide others (switch to the other slide)
    $("#about").hide();
    $("#contact").fadeIn();
    return false;
  });

  $(".slider a.info").click(function () {
    // show the target of the link and hide others (switch to the other slide)
    $("#contact").hide();
    $("#about").fadeIn();
    return false;
  });

});
