function vote(a){var b=$(a).serialize(true);new Ajax.Request("votes/vote/"+b.answer,{method:"post",parameters:{vote:1},onComplete:function(c){$("votediv").update(c.responseText)}})}function voteResult(){new Ajax.Request("votes/show_results",{method:"post",parameters:{vote:2},onComplete:function(a){$("votediv").update(a.responseText)}})}function voteShow(){new Ajax.Request("votes/show",{method:"post",parameters:{vote:3},onComplete:function(a){$("votediv").update(a.responseText)}})}document.observe("dom:loaded",function(){if($("votediv")){voteShow()}});
