google.load("prototype", "1.6.1.0");
google.load("scriptaculous", "1.8.3");
app={};

google.setOnLoadCallback(
    function (){
        app.envio = new EnviaForma();
        app.envio.init();
        app.comportamiento = new Comportamiento();
        app.comportamiento.init();
        app.autocompletar= new Autocompletar();
        app.autocompletar.init();
        app.btns_videos= new Videos();
        app.btns_videos.init();
        app.compartir_liga= new CompartirLiga();
        app.compartir_liga.init();

    }
);

