if(typeof(share) == 'object'){
	share.tracking = true;
	share.tweet = 'I voted for the leader of the post-2012 world. TheIHC.com/election';
}

function addEvents(){

	var sendtweet = document.getElementById('sendtweet');
	if(sendtweet){
		sendtweet.onclick = function(){
			share.send('twitter');
			return false;
		}
	}

	var voteform = document.getElementById('vote');
	if(voteform){
		voteform.onsubmit = function(){
			return doSubmit();
		}
	}
}

addLoadEvent(addEvents);