/*Define a list of subjects and value numbers separated by a pipe | shift +backslash

The number corresponds to the email_addresses number from the email_settings.asp file
1 is the first, 2 is the second etc.

'Email Subject|Numbered Email address'

These values are written to the Contact us page in a drop-down and in the order they 
appear here.

PLEASE NOTE!!!!!!!!!!!!!!!!!!
#######################################
With the subjects you put here, if you want them to be auto selected when you 
hit the contact page from a specific link, create a form like the one in the
services/index page making the action="contact/" method="post"

Then in the page's contact link, code it to submit the form and have an onClick 
event which will make the hidden field named "subject" the EXACT same words that 
you enter here.

The script loops through all the subjects listed here and matches it against the
subject field that is submitted with the form, if a matching subject is found, 
it is then auto selected.
#######################################


*/


var subJects = new Array(
'General Contact|1',
'Membership|1',
'Charity Event|1',
'Party Planner|1',
'Private Tuition|1',
'Club Services|1',
'DJ Hire|1',
'Web Design|2'
);