// JavaScript Document

jQuery(document).ready(function() {

	// business directory
	jQuery(".faded_term").focus(function () {
    	jQuery(this).val("").removeClass('faded_term');
		jQuery(this).unbind('focus')
    });
	
	
	jQuery('#business_directory_form').submit(
		function()
		{
			jQuery(".faded_term").val('');
		}
	);
	// auto complete
    jQuery("#directoryterm").autocomplete("/directory/ajax/autocomplete/",  {minChars: 1, width: 250, max: 20});
    jQuery("#term_what").autocomplete("/directory/ajax/autocomplete_what/", {minChars: 1, width: 250, max: 20});
});
