/**
 * Add onclick="" to poll forms so this form will 
 * submit when clicking on an awnser
 */
function pollSubmitAwnser(jqueryFormId) {
	$(jqueryFormId).find('label').click(function(){
			$(jqueryFormId).submit();
	});
	
	// IE, what else..
	$(jqueryFormId).find('label > input').change(function(){
			$(jqueryFormId).submit();
	});
}