$(function(){
	// blur clicked links (avoid ugly border around them)
	$('a, object').focus(function(){
		this.blur();
	});
	
	// disable shipping adress 
	$('input[name="oneadres"]').click(function(){
		if($(this).attr('checked')){
			$('input[name^="d_"]').each(function(){
				$(this).attr('disabled','disabled');
			});
		}else{
			$('input[name^="d_"]').each(function(){
				$(this).attr('disabled','');
			});
		}
	})
	if($('input[name="oneadres"]').attr('checked')){
		$('input[name^="d_"]').each(function(){
				$(this).attr('disabled','disabled');
			});
	}
	
	
	

});

