$(function(){
    var captcha = 0;
    if(captcha = $('#captcha')){
        refreshCaptcha();
    }
});

function rateM(mtype, mid, rate){
    $.post('/rate/add',{
        mtype: mtype,
        mid: mid,
        rate: rate
    },
    function(html, status){
        if(html == '0'){
            alert('Вы уже голосовали!');
        } else {
            $('#reit').html(html);
        }
    }, 'html')
}

function refreshCaptcha(){
    $('#captcha').attr('src', '');
    setTimeout(function(){
        $('#captcha').attr('src', '/captcha/default');
    }, 100);
}
