function radioButtons() {
	$('.radio').click(function() {
		$('label.radio').removeClass('checked');	
		$('label.radio').attr("checked","");
		$(this).addClass('checked');
	});
}
function Rotator() {
	$("#sfeer > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 6000, true);
}
function clearInput() {
	$('#informatie input[type="text"]').focus(function() {
		$(this).select();
		$(this).prev().fadeTo(150, 0.33);
		$(this).keydown(function() {
			$(this).css('background-repeat', 'repeat');			 
		});
	});
	$('#informatie input[type="text"]').blur(function() {
		if ( $(this).val() == '' ) {
			$(this).css('background-repeat', 'no-repeat');
			$(this).prev().fadeTo(150, 1);
		}
	});
}
