$(document).ready(function(){

	$("label[for]").each(
		function(i){
			if($("input[id='" +this.htmlFor +"']").attr("value") == "" || $("input[id='" +this.htmlFor +"']").attr("value") == this.innerHTML)
				$("input[id='" +this.htmlFor +"']").attr("value", this.innerHTML);
			$("input[id='" +this.htmlFor +"']").attr("startVal", this.innerHTML);
			$("input[id='" +this.htmlFor +"']").focus(function(i){
					if(this.value == $(this).attr("startVal")){
						this.value = "";
					}
				}
			);
			$("input[id='" +this.htmlFor +"']").blur(function(i){
				if(this.value == ""){
					this.value = $(this).attr("startVal");
				}
			});
		}
	);
});