
var Shellquip = 
{
	Pages: 
	{
		Contact: { },
		Search: { }
	}
};


Shellquip.FormValidator = Jel.FormValidator.extend
({
    constructor: function(form)
    {
        this.base
        (
            form,
            {
                callbacks:
                {
                    formatFieldLabel: function(label, field)
                    {
                        return label.replace(" (required):", "").replace(" (optional):", "");
                    }
                }
            }
        );   
    }
});


