(function($){
	var davHelper = {
			init : function(){
				davHelper.focusField();
			},
			focusField : function(){
				// input focus/blur function (hide/show value)
				$('input.focusField').each(function(){
					var defaultValue = this.value;
					$(this).focus(function(){
						if(this.value == defaultValue){
							this.value = '';
						}
					});
					$(this).blur(function(){
						if(this.value == ''){
							this.value = defaultValue;
						}
					});
				});
			}
			
	};
	
	$(document).ready(davHelper.init);
})(jQuery);
