$(document).ready(function(){
/*---- 
	All text inputs with a value get their value emptied on focus
----*/	

	
	
	$(":text").each(function(){
		var ov = $(this).val();
		
		$(this).focus(function(){
			var fv = $(this).val();
			//if (fv == ov) {
  				$(this).select();
  			//}
		});
	
		$(this).blur(function(){
			var bv = $(this).val();
  			if (bv.length < 1) {
  			//	$(this).val(ov);
  			}
		});
	});
	
});