function voteazaComm(comm_id, action)
{
    $.ajax({
        type: "POST",
        url: "/ajax.php",
        data: {
            ajaxAcces: 'voteComm',
            action: action,
            comm_id: comm_id
        },
        success: function(msg){ 
            $('#c-voturi-'+comm_id).html(msg);
        }
	 });
     
     return false;
}

$(document).ready(function(){
    $('a.c-link-rasp').click(function(){
        $('#comm_desc').focus();
        return false;
    });
    
    
    $('a.afiseaza').click(function(){
        var comentariu = $(this).closest('div.comentariu');
        $(comentariu).toggleClass('gri');
        if ((comentariu).hasClass('gri')) {
            $(this).html('Afiseaza');
        } else {
            $(this).html('Ascunde');
        }
        
        return false;
    });
});