$(document).ready(function() {
	$('input[type="text"], input[type="password"]').addClass("idleField");
	$('input[type="text"], input[type="password"]').focus(function() {
		$(this).removeClass("idleField").addClass("focusField");
		if (this.value == this.defaultValue) {
			this.value = '';
		}
		if (this.value != this.defaultValue) {
			this.select();
			if(this.id == 'api'){
				$("#search_api").attr("checked", true);
			}
			else {
				$("#search_county").attr("checked", true);
			}
		}
	});
	$('input[type="text"], input[type="password"]').blur(function() {
		$(this).removeClass("focusField").addClass("idleField");
		if (this.value == '') {
			this.value = (this.defaultValue ? this.defaultValue : '');
		}
	});
	$('textarea').addClass("idleField");
	$('textarea').focus(function() {
		$(this).removeClass("idleField").addClass("focusField");
		if (this.value == this.defaultValue) {
			this.value = '';
		}
		if (this.value != this.defaultValue) {
			this.select();
		}
	});
	$('textarea').blur(function() {
		$(this).removeClass("focusField").addClass("idleField");
		if (this.value == '') {
			this.value = (this.defaultValue ? this.defaultValue : '');
		}
	});
});
