function autoFill(id){
	
	jQuery(id).css({ color: "#888" }).val(jQuery(id).attr("title")).focus(function(){
		if(jQuery(this).val()==jQuery(this).attr("title")){
			jQuery(this).val("").css({ color: "#000" });
		}
	}).blur(function(){
		if(jQuery(this).val()==""){
			jQuery(this).css({ color: "#888" }).val(jQuery(this).attr("title"));
		}
	});

}
/*
val(jQuery(this).attr("title")
attr("value",jQuery(this).attr("title"))
*/