jQuery(function($){
	$("select:has(option.default)").each(function(){
		$("option:selected", this).each(function(){
			this.defaultSelected = false;
			this.selected = true;
		});
		$("option.default", this).each(function(){
			this.defaultSelected = true;
		});
	});
	$("input.title-if-empty").each(function(){
		var value = this.value;
		this.defaultValue = this.title;
		this.value = value == "" ? this.title : value;
	}).focus(function(){
		this.value = this.value == this.title ? "" : this.value;
	}).blur(function(){
		this.value = this.value == "" ? this.title : this.value;
	});
	$("form:has(input.title-if-empty)").submit(function(){
		$("input.title-if-empty", this).each(function(){
			this.value = this.value == this.title ? "" : this.value;
		});
	});
});
