/**
 * "route" - unsure why it's called that... :)
 */
jQuery(document).ready(function(e) {
    jQuery("#route input").each(function() {
	this.defaultValue = this.value;

	$(this).focus(function() {
	    if (this.value === this.defaultValue) {
		this.value == "";
	    }
	});

	$(this).blur(function() {
	    if (this.value === "") {
		this.value == this.defaultValue;
	    }
	});
    });
});
