// Manage -> Staff

var validateSignup = new Array();

validateSignup["first_name"] = [
								"required",
								"errorBackgroundColor=gold",
								"backgroundColor=white"
							];

validateSignup["last_name"] = [
								"required",
								"errorBackgroundColor=gold",
								"backgroundColor=white"
							];

validateSignup["email"] = [
								"required",
								"errorBackgroundColor=gold",
								"backgroundColor=white"
							];
validateSignup["login_password"] = [
								"required",
								"errorBackgroundColor=gold",
								"backgroundColor=white"
							];
validateSignup["addressl"] = [
                                "required",
                                "errorBackgroundColor=gold",
                                "backgroundColor=white"
                            ];
validateSignup["suburb"] = [
                                "required",
                                "errorBackgroundColor=gold",
                                "backgroundColor=white"
                            ];
validateSignup["state"] = [
                                "required",
                                "errorBackgroundColor=gold",
                                "backgroundColor=white"
                            ];
validateSignup["postcode"] = [
                                "required",
                                "errorBackgroundColor=gold",
                                "backgroundColor=white"
                            ];
validateSignup["member_username"] = [
                                "required",
                                "errorBackgroundColor=gold",
                                "backgroundColor=white"
                            ];
