				function HintRefresh(){
					$("input[hint], textarea[hint]").each(function(i, e){
						if($(e).val() == ""){
							$(e).val($(e).attr('hint'));
							$(e).addClass('hint');
						}
					});
				}

	

				$("input[type=text][hint], textarea[hint]").live("focus", function(evt){
					if($(this).val() == $(this).attr("hint")){
						$(this).val("");
						$(this).removeClass("hint");
					}
				});
				
				$("input[type=text][hint], textarea[hint]").live("change", function(evt){
					if($(this).val() == $(this).attr("hint")){
						$(this).val("");
						$(this).addClass("hint");
					}else{
						$(this).removeClass("hint");
					}
				});
				
				$("input[type=text][hint], textarea[hint]").live("blur", function(evt){
					if($(this).val() == ""){
						$(this).val($(this).attr("hint"));
						$(this).addClass("hint");
					}else{
						$(this).removeClass("hint");
					}
				});
					
