/*!
 * initStyles JavaScript Library v1.0
 * http://www.hotsaucestudio.com/
 *
 * Copyright (c) 2009 Pablo Alejo
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-05 20:42:16 -0500 (Wed, 05 Feb 2009)
 * Revision: 0001
 */
jQuery.searchFunction = {	
	clickClear:function(obj, txt){
		if(obj.value == txt){
			obj.value = "";
		}
	},
	clickRecall:function(obj, txt){
		if(obj.value == ""){
			obj.value = txt;
		}
		
	}
};
