$jQ(function(){

function autoFill(id, v){
	$jQ(id).css({ color: "#777" }).attr({ value: v }).focus(function(){
		if($jQ(this).val()==v){
			$jQ(this).val("").css({ color: "#333" });
		}
	}).blur(function(){
		if($jQ(this).val()==""){
			$jQ(this).css({ color: "#777" }).val(v);
		}
	});

}

	autoFill($jQ("#em_wfs_formfield_1721852"), "First Name*");
	autoFill($jQ("#em_wfs_formfield_1721853"), "Surname*");
	autoFill($jQ("#em_wfs_formfield_1721844"), "Phone*");
	autoFill($jQ("#em_wfs_formfield_1721843"), "Email Address*");
	autoFill($jQ("#em_wfs_formfield_1721854"), "Address*");
	autoFill($jQ("#em_wfs_formfield_1721855"), "Suburb*");

	autoFill($jQ("#em_wfs_formfield_1722541"), "First Name*");
	autoFill($jQ("#em_wfs_formfield_1722542"), "Surname*");
	autoFill($jQ("#em_wfs_formfield_1722540"), "Phone*");
	autoFill($jQ("#em_wfs_formfield_1722539"), "Email Address*");
	autoFill($jQ("#em_wfs_formfield_1722543"), "Address");
	autoFill($jQ("#em_wfs_formfield_1722544"), "Suburb*");
	autoFill($jQ("#em_wfs_formfield_1722545"), "Comments");

	autoFill($jQ("#em_wfs_formfield_1723056"), "Organisation*");
	autoFill($jQ("#em_wfs_formfield_1723062"), "President/Contact*");
	autoFill($jQ("#em_wfs_formfield_1723054"), "Phone*");
	autoFill($jQ("#em_wfs_formfield_1723053"), "Email Address*");
	autoFill($jQ("#em_wfs_formfield_1723057"), "Address");
	autoFill($jQ("#em_wfs_formfield_1723058"), "Suburb*");
	autoFill($jQ("#em_wfs_formfield_1723059"), "Community Notice");

	autoFill($jQ("#em_wfs_formfield_1723110"), "First Name*");
	autoFill($jQ("#em_wfs_formfield_1723111"), "Surname*");
	autoFill($jQ("#em_wfs_formfield_1723109"), "Phone*");
	autoFill($jQ("#em_wfs_formfield_1723108"), "Email Address*");
	autoFill($jQ("#em_wfs_formfield_1723112"), "Address*");
	autoFill($jQ("#em_wfs_formfield_1723113"), "Suburb*");
	autoFill($jQ("#em_wfs_formfield_1723114"), "Comments");


});