
var __FORMS = ['contact', 'auth_login', 'auth_forget', 'auth_reg', 'auth_profile', 'subs_newsletter', 'subscribe_items', 'cart_add_user', 'fm_agent', 'competition'];//, 'cart'
__FORMS.contact = {
    'title': ['Title', 'text'],
    'firstname': ['First Name', 'text'],
    'lastname': ['Last Name', 'text'],
    'email': ['E-Mail', 'email'],
	'phone': ['Telephone number', 'int'],
    'comments': ['Your comments & requests', 'text']
};
__FORMS.feedback = {
    'title': ['Title', 'text'],
    'firstname': ['First Name', 'text'],
    'lastname': ['Last Name', 'text'],
    'email': ['E-Mail', 'email'],
    'comments': ['Your Feedback', 'text']
};
__FORMS.auth_login = {
    'username': ['Login', 'text'],
    'password': ['Password', 'text']
};
__FORMS.auth_forget = {
    'email': ['E-Mail', 'email']
};
__FORMS.auth_reg = {
    'login': ['Desired Login', 'text'],
    'email': ['E-Mail', 'email'],
    'firstname': ['First Name', 'text'],
    'how_found': ['How did you find us', 'int']
/*  'surname': ['Surname', 'text'],*/
};

__FORMS.auth_profile = {
    'title': ['Title', 'text'],
    'firstname': ['First Name', 'text'],
    'surname': ['Surname', 'text'],
    'email': ['E-Mail', 'email'],
    'gender': ['Gender', 'text']
};
__FORMS.subs_newsletter = {
    'username': ['Your Name', 'text', 'Your Name'],
    'email': ['Your Email', 'email', 'Your Email']
};

__FORMS.subscribe_items = {
    'username': ['Your Name', 'text', 'Your Name'],
    'email': ['Your Email', 'email', 'Your Email']
};


__FORMS.cart_add_user = {
    'firstname': ['First Name', 'text'],
    'surname': ['Surname', 'text'],
    'email': ['E-Mail', 'email']
};

__FORMS.cart = {
/*  'question': ['How did you find us?', 'int']*/
};
__FORMS.fm_agent = {
    'agent': ['Agent', 'text'],
    'voucher': ['Voucher', 'text'],
    'code': ['Voucher Code', 'text']
};
__FORMS.competition= {
    'team_name': ['Name your greatest team and state your reasons', 'text'],
    'benefits': ['State what benefits you feel a team building event would have for your business', 'text'],
    'skill': ['The single most important skill we\'d like to develop in our business is', 'text'],
    'firstname': ['Name', 'text'],
    'company': ['Company Name and Address', 'text'],
    'phone': ['Telephone (day)', 'text'],
    'email': ['E-Mail', 'email']
};


