function def()
{
	var pollSelected = 0;

	this.doLoad = function()
	{
		document.getElementById("loading").style.display = 'none';
	}

	this.selectPoll = function(id)
	{
		if ( this.pollSelected )
			document.getElementById("poll-ans-" + this.pollSelected).className="pollunselected";

		document.getElementById("poll-ans-" + id).className="pollselected";
		this.pollSelected = id;
	}

	this.submitPoll = function()
	{
		if ( ! this.pollSelected )
			return alert("You must choose an option before voting!");

		window.location = 'index.php?act=poll&ansid=' + this.pollSelected;
	}
}

var def = new def();