/* 
   ----------------------------------------------------------------
		jQuery Extensions & Patches
   ----------------------------------------------------------------
*/
$(function(){


	
/* 
		STORE LOCATOR ENHANCEMENTS
   ---------------------------------------------------------------- */	
		
	//When the user types in the postcode search field, disable the drop down
	//Otherwise, the drop down value overrides the search results.
	if ($('#storelocatorform')) {
		$('#storelocatorform input#address')
			.keyup(function(){
				if ($(this).attr('value').length) {
					$('#storeSelectDropdown').attr('disabled', 'disabled');
				} else {
					$('#storeSelectDropdown').removeAttr('disabled');
				}
			});
		
		//Onload, force enable the drop down (some browsers cache the disabled state incorrectly):
		if ($('input#address').length > 0) {
			if ($('input#address').attr('value').length) {
				$('#storeSelectDropdown').attr('disabled', 'disabled');
			} else {
				$('#storeSelectDropdown').removeAttr('disabled');
			}
		}
	}
});

