$(document).ready(function() {
    $('button').button();
//    $('div div a').each(function(indice, valor) {
//        if($(valor).attr('href') == 'http://apycom.com/') {
//            $(valor).parent().parent().remove();
//        }
//    });

});
function alerta(conteudo) {
    $.jGrowl.defaults.position = 'center';
    $.jGrowl(conteudo, {
        //sticky: true,
        glue: 'before',
        speed: 350,
        //easing: 'easeInOutElastic',
        easing: '',
        animateOpen: {
            height: "show",
            width: "show"
        },
        animateClose: {
            height: "hide",
            width: "hide"
        },
        life: 2000
    });
}