$(document).ready(function(){
    $("#front_menu li").each(function(){
        if ($(this).attr('class').indexOf('current_page_ancestor') != -1){
            var temp = $(this).find('a').html();
            $(this).html(temp);
        }
    });

    $("#menu-lateral .left").click(function () {
        if ($('#menu-lateral').css('width') == '40px'){
            $('#menu-lateral').animate({
                width: 340
            },400, function(){
                $("#menu-lateral .left .flecha").css({
                    'background-position' : '0px 0'
                });

                $("#menu-lateral .right").css({
                    display: 'block'
                });
            });
        }else{
            $("#menu-lateral .right").css({
                display: 'none'
            });
            $('#menu-lateral').animate({
                width: 40
            },400,function(){
                $("#menu-lateral .left .flecha").css({
                    'background-position' : '-15px 0'
                });
            });
        }
    });

    $("#menu-lateral .left").corner('30px left');
    $("#menu-lateral").corner('15px left');

})
