/*!
 * 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.extraFunctions = {
	clearInput:function(obj, val){
		if($(obj).val() == val){
			$(obj).val("");
		}
	},
	resetInput:function(obj, val){
		if($(obj).val() == ""){
			$(obj).val(val);
		}
	}
};
