var ie = false;


$(document).ready(function() {
	hoverFields();
});

function hoverFields(){
	$(".input_veld").focus(function() {
		$(this).addClass('input_hover');
		return false;
	});
	$(".input_veld").blur(function() {
		$(this).removeClass('input_hover');
		return false;
	});
}

