$(function() {

	// Focus/blur styles for form elements
	$(":input").focus(function () {
		$(this).addClass('selectedInput')
	});    
	$(":input").blur(function () {
		$(this).removeClass('selectedInput')
	});
	
	// Focus on the first text input field in the first field on the page
	$(":input[type!='checkbox']:visible:enabled:first").focus();
	
	// Only allow one of the 'where' search fields to be available			
	$("#postcode").keyup( function () {
		$("#region").val('0');
		$("#radius").val('30');
	});	
	$("#region").change( function () {
		$("#postcode").val('');
		$("#radius").val('0');
	});
	
});

