jQuery(document).ready(function($) {
	var activeVote = "";
	/*$(".votebutton").bind("mouseover",function(){
		$(this).children(".votebuttonOff").hide();
		$(this).children(".votebuttonOn").show();
	});
	$(".votebutton").bind("mouseout",function(){
		$(this).children(".votebuttonOn").hide();
		$(this).children(".votebuttonOff").show();
	});*/
	$(".votebutton").bind("click",function(){
		$("#voteForm").submit();
		return false;
		/*$(".votebuttonOn").hide();
		$(".votebuttonOff").show();
		$(this).children(".votebuttonOff").hide();
		$(this).children(".votebuttonOn").show();
		activeVote = $(this).attr("id");
		$("#finalist").attr("value",activeVote);
		return false;*/
	});

});
