/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(function(){
    $(".votelist :submit")
    .attr("disabled","disabled");
    function enableVoting(){        
        $(".votelist :submit")
        .removeAttr("disabled");
        $(".votelistitem :checkbox")
        .add('.votelistitem :radio')
        .unbind('change')
        .unbind('click');
    }

    $(".votelistitem :checkbox")
    .add('.votelistitem :radio')
    .change(enableVoting)
    .click(enableVoting);
});
