var kickstart = {
    
    // clear form fields on focus
    formFields : function()
    {
        var _oForm = $('form input[type=text], form textarea');
        var _sFocusClass = 'focus';
        _oForm.focus(function(){
            var _oSelf              = $(this);
            var _sFormFieldValue    = _oSelf.val();
            var _sFormFieldTitle    = _oSelf.attr('title');
            
            if ( _sFormFieldValue == _sFormFieldTitle )
            {
                _oSelf.val('').addClass(_sFocusClass);
                _oSelf.blur(function(){
                    var sNewValue = _oSelf.val();
                    sNewValue == '' ? _oSelf.val(_sFormFieldTitle).removeClass(_sFocusClass) : _oSelf.val(sNewValue);
                });
            }
        });
    }
        
}
