var home_inputs = {
    
    init:function()
    { 
        var inputs = $$('.home-form .itext.smart_input');    
        inputs.each(function(e) {
            var elem = new input_helper(e);   
            elem.check_field();
            Event.observe(e, 'focus', elem.handle_focus.bind(elem));
            Event.observe(e, 'blur', elem.handle_blur.bind(elem));
            Event.observe(e, 'keypress', elem.handle_keypress.bind(elem));
        });
    }
};
