function greySuggestion(handle, suggestion, flag) {

	this.greyColor  = "#999999";
	this.focusColor = "#000000";

	// Flags; init, focus, unfocus
	if(flag == "init") {
		
		handle.style.color = this.greyColor;
		handle.value       = suggestion;
		
	} else if(flag == "focus") {
		
		if(handle.value == suggestion) { // If user has not entered anything...
		
			handle.value = ""; // Clear box so they are free to enter content
			
		}
		
		handle.style.color = this.focusColor; // Make sure we're not in grey-mode
		
	} else if(flag == "unfocus") {
		
		if(handle.value == "") { // User's focus just left our box, they didn't enter anything
		
			handle.style.color = this.greyColor;
			handle.value       = suggestion;
		
		}
		
	}

}
