
$(function() {
	$('#Villkor').each(function() {
		$(this).load('/villkor #Left *')
	});
	$('form#LoadMethod').each(function() {
		$(this).submit(function() {
			try {
				$(this).find('.box').removeClass('warning');
				var AV = $(this).find('#AllmannaVillkor');
				if (AV.is(':checked')) {
					var Method = $(this).find('[name=Method]:checked').val();
					$(this).attr('action', '/ansok/' + Method);
					return true;
				} else {
					AV.parent('.box').addClass('warning');
				}
			} catch (e) {
				console.log(e);
			}
			return false;
		});
	});
});
