$(document).ready(function(){
    $("#f1").click(function(){
        $("#oculto1").show("slow");
        $("#oculto2").hide("slow");
        $("#oculto3").hide("slow");
    });
    $("#f2").click(function(){
        $("#oculto1").hide("slow");
        $("#oculto2").show("slow");
        $("#oculto3").hide("slow");
    });
 
    $("#f3").click(function(){
        $("#oculto1").hide("slow");
        $("#oculto2").hide("slow");
        $("#oculto3").show("slow");
    });
});