// This script is used to solve the firefox radiobuttonbug. Which checks previously selected radiobuttons on pagerefresh, even when other radiobuttons have the atrribute checked.
function checkedReset(){
	jQuery('input[checked]').each(
		function(){
			jQuery(this).attr('checked', 'checked');
		}
	);
	jQuery('input:not([checked])').each(
		function(){
			jQuery(this).attr('checked', '');
		}
	);
}
