var poll_init=function(){
	if($('poll_options')){
		opt=$('poll_options').getElements('a');	
		opt.each(function(o,i){
			o.addEvent('click',function(event){
				new Request.HTML({url:absPath+webLang+'/'+module_poll_url+'/',method:'get',onSuccess:function(tree,elements,html,js){
					$('module_poll').set('html',html);
					poll_init();
				}}).send('webmin_ajax=1&poll_action_type=vote&poll_vote='+(i+1));
				return false;
			}.pass(i)
			);
		});
	}
}
window.addEvent('domready',function(){
	poll_init();
});
