/* Make the mailrequest go via AJAX */
if (jQuery) jQuery(document).ready(function() {
	jQuery('form[name=mailform]').submit(function() {
		// make AJAX call
		var formField = this;
		$.post(this.action, $(this).serialize()+"&type=792&formtype_mail=Verstuur", function(data) {
			// fill the form with data
			$(formField).html(data);
		});
		
		return false;	// the form should NOT post.
	});
	jQuery('.tx-jkpoll-pi1 .poll dl dd').each(function() {
		if (jQuery(this).html().indexOf(' %') > -1) {
			var percentage = jQuery(this).html().replace(/ %/g, '');
			jQuery(this).html(Math.round(percentage) + "%");
		}
	});
});
