window.addEvent('domready', function() {

	// EDIT THESE LINES TO CUSTOMIZE YOUR POLL

	// unique poll id
	id = 12;

	// poll question
	question = 'Do you think 2010 is going to be a better year for you overall?';
	
	// poll answers
	answers = ['Yes', 'No', 'It will be the same'];

	// html element id to hold poll
	el = 'poll';

	// DO NOT MODIFY THE FOLLOWING LINES
	var poll = {'id':id, 'question':question, 'answers':answers};
	var myAjaxPoll = new ajaxPoll(el, poll);

});