/* ACTIVACION DEL EFECTO DE ACORDION EN FRACTALMEDIA
 * Nota: Para agregar el efecto bounce, quite los comentarios
 * <%-- SCRIPTS REQUERIDOS PARA USAR EL EFECTO BOUNCESLIDE
 *   <script type="text/javascript" src="http://ui.jquery.com/latest/ui/effects.bounce.js"></script>
 *   <script type="text/javascript" src="http://ui.jquery.com/latest/ui/effects.core.js"></script>
 *   <script type="text/javascript" src="http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.compatibility.js"></script> --%>
*/
$(document).ready(function(){
    $("#accordion").accordion({
        event: 'mouseover',
        fillSpace: true,
        header: 'span'
        /*AGREGA EL EFECTO BOUNCE */
        /*, animated: "bounceslide"*/
    });
});


