$(document).ready(function(){
    $("#nav ul:first").superfish();
    
    $('.banner .innerart').innerfade({ 
		speed: 'slow', 
		timeout: 4000, 
		type: 'sequence', 
		containerheight: '300px'
	});
	
	$('input[name="tomt"]').change(function() {
		if($(this).attr('id') == 'radio-1') {
			$("#kommune").removeAttr('disabled');
		} else {
			$("#kommune").attr('disabled', 'disabled');
		}
	});
	

	$('#webskjema').validate({
		/*errorPlacement: function(error, element) {
			if ( element.is(":radio") )
				error.appendTo( element.parent().parent().parent() );
			if ( element.is(":checkbox") )
				error.prependTo( element.parent().parent().parent() );
			else
				error.appendTo( element.parent().prev() );
		}*/
		
	})
	
});

function send_webskjema() {
	$("#radio-1").val('Jeg har tomt i ' + $("#kommune").val() + ' kommune');
	$("#webskjema").submit();
}
