salmon.namespace.addNamespace("boots.forms.prefill");
boots.forms.prefill = {
	init:function(){
		$(".prefill").each(function(){
			if($(this).attr("value")==""){
				$(this).attr({value:$(this).attr("title")});
			}
			$(this).focus(function(){
				if($(this).attr("value")==$(this).attr("title")){
					$(this).attr({value:""});
				}
			}).blur(function(){
				if($(this).attr("value")==""){
					$(this).attr({value:$(this).attr("title")});
				}
			});
			$(this.form).submit(function(){
				$(this).find(".prefill").each(function(){
					if($(this).attr("value")==$(this).attr("title")){
						$(this).attr({value:""});
					}
				});
			});
		});
	}
}
$(document).ready(function(){ boots.forms.prefill.init(); });