/**
 * Poll ajax functions.
 *
 * @author Erling Holmqvist
 */
(function($){	
    $(function(){ 
        $(".poll form").each(
			function () {
				var pollresult = $(".pollresult", this);
				$(this).ajaxForm( { target: pollresult } );
			}
		);
    });
})(jQuery);
