creo que es mejor si utilizas .show() y .hide() así:
   Código PHP:
     
    <script>
    $(document).ready(iniciar);
     
    function iniciar(){
    $("#1").mouseover(ocultar);
    $("#2").mouseout(mostrar);
    }
     
    function ocultar(){
    $("#2").hide();
    }
     
    function mostrar(){
    $("#2").show();
    }
    </script>