jQuery(document).ready(function() { 
	defaultValue = jQuery('#CustomSearchForm_SearchForm_Search').val();	
	jQuery('#CustomSearchForm_SearchForm_Search').click(function() { 
		if( this.value == defaultValue ) { 
			jQuery(this).val("");
		} 
	}); 
        
        defaultValue1 = jQuery('#CustomSearchForm_DirectorySearchForm_Search').val();
        jQuery('#CustomSearchForm_DirectorySearchForm_Search').click(function() { 
		if( this.value == defaultValue1 ) { 
			jQuery(this).val("");
		} 
	}); 
        
        jQuery('#CustomSearchForm_SearchForm').submit(function() {
                if (jQuery("#CustomSearchForm_SearchForm_Search").val() == "") {
                    jQuery("#CustomSearchForm_SearchForm_Search").val("Keyword Required").fadeIn(1500).click(function() {
                        jQuery(this).val("");
                    });
                    
                return false;
              }
              
              return true;
        });
        
        
});
