//-- This is the javascript module for module_voting.php

// This is an periodical update checkes per 1 second if there are any changes
// is not that after 2 secs. if not then after 4 secs. ect.
var votingupdater = new Ajax.PeriodicalUpdater('most_votes_body', '/modules/module_voting.php',
  {
    method: 'post',parameters:"voting_is_ajax=true",
    frequency: 1,
    decay: 2
  });
votingupdater.stop();

