$(document).ready(function()
{
    $(".sele").bind("click",function(){
        $(this).parent().next(".oculto").slideToggle("fast");
    });
    $(".sele2").bind("click",function(){
        $(this).next(".oculto").slideToggle("fast");
    });
    //DESPLEGAMOS LOS HIJOS DEL PADRE CUYO HIJO HEMOS PULSADO
    $(".botonsel",$(".menu")).next(".oculto").show();
    $(".botonsel2").parents(".oculto").show();
    $(".botonsel3").parents(".oculto").show();
    $(".botonsel4").parents(".oculto").show();
});
