/*window.onload = function(){	
	$(document).ready(function(){
		$('.antwoord').mousedown(function(){
			waarde = this.value;
			poll_id = $('input[@name="poll_id"]').val();
			//schuif de poll omhoog
			$.post("./functions/submitpoll.php",{waarde:waarde,poll_id:poll_id},function(data){	
				alert(data);
				$('#pollresultaat').slideUp("fast");
				$('#pollresultaat').html('<p class="busy">Uw stem wordt opgeslagen...</p>');
				$('#pollresultaat').slideDown("slow");
				$('#pollresultaat').slideUp("fast",function(){
					$('#pollresultaat').load("./functions/poll.php",{poll_id:poll_id},function(){
						$('#pollresultaat').css("height","180px");
						$('#pollresultaat').slideDown("slow");
					});
				});
			});
		//return false;
		});
	});
}*/
window.onload = function(){	
	$(document).ready(function(){
		$('.antwoord').mousedown(function(){
			waarde = this.value;
			count = $('input[@name="count"]').val();
			hoogte = count*50;
			poll_id = $('input[@name="poll_id"]').val();
			//schuif de poll omhoog
			$.post("./functions/submitpoll.php",{waarde:waarde,poll_id:poll_id},function(data){	
				alert(data);
				$('#pollresultaat').slideUp("fast");
				$('#pollresultaat').html('<p class="busy">Uw stem wordt opgeslagen...</p>');
				$('#pollresultaat').slideDown("slow");
				$('#pollresultaat').slideUp("fast",function(){
					$('#pollresultaat').load("./functions/poll.php",{poll_id:poll_id},function(){
						$('#pollresultaat').css("height",hoogte+"px");
						$('#pollresultaat').slideDown("slow");
					});
				});
			});
		//return false;
		});
	});
}
