
BlueDog.Pages.Forms.Quote = BlueDog.Page.extend
({
    constructor: function()
    {
        this.base();
    },
    
    windowOnLoad: function(event)
    {
        this.base();
        
        this.validator = new Jel.FormValidator($('request-quote'));
        
        //new Jel.FieldHint($('name'), "First Name, Surname", { restoreOnBlur: true } );
    }
});
