$(document).ready(function(){
    if($("#head > p > img").length>1)
    {
        $("#head > p").cycle({'fx':'fade'});
    }

    $("#vote").click(function(){
        if($("form :radio:checked").length>0)
        $.getJSON( '/execplugin/?plg=survey&plugFunc=vote' , {id:$("form :radio:checked").val()}, function(data){
            switch(parseInt(data.code)) {
                case -1:
                    alert('Необходимо включить Cookie для голосования.');
                break;

                case -2:
                    alert('Вы принимали участие в этом голосовании.');
                break;
            }
            var html=TrimPath.processDOMTemplate("vote_tpl", data);
            $("#voting").html(html);
        });
        return false;
    });
});


