$.fn.swedSaveForm = function() {
	$(this).change(function(){
		var n = $(this).attr('name');
		var v = $(this).val();
		createCookie(n,v,1);
}); };

$.fn.swedLoadForm_Radios = function() {
	$(this).each(function(){
		var n = $(this).attr('name');
		var v = readCookie(n);
		if (v != null) {
			$('input.radio[name|='+n+']').removeAttr('checked');
			$('input.radio[value|='+v+']').attr('checked', 'true').change();
}; }); };

$.fn.swedLoadForm_Texts = function() {
	$(this).each(function(){
		var n = $(this).attr('name');
		var v = readCookie(n);
		if (v != null) $(this).val(v);
}); };
