var cars = new Array(
//###########################
//BEGIN NOTES
// In a scripting language like JavaScript and ASP, arrays start at zero, the car you click on the 
// car hire page says showCar(0), showCar(1) etc. these correspond to the car clicked, so if you
// click the Seicento showCar(2), you are pulling details from the third in the list. The cars
// have been numbered from left to right, top to bottom 0 - 7 with eight cars starting at zero.
// Note that the Seicento has <br> in the special text, this means break in the HTML language and <br>
// breaks the line at that point to carry on below it. Enclosing words within <p> and </p> is HTML
// for a new paragraph, unlike <br> you need the closing </p> tag to close it. So 
//<p>new paragraph

// close it here.</p>
//Any data you include for each vehicle including special text must be on the same line.
//                                      Prices       May/Oct        |June/Sept    |July/Aug
//make  |model|  seats|doors|CC|convert|4x4|aircon|3days,5days,7days,|3days,5days,7days|3days,5days,7days|SpecialText 

//END NOTES START ARRAY                                      NO SPACES AFTER THIS  |
//############################
"Ford    |Focus  | 5 | 5 | 1.4     | no  | no  | yes | 75,125,175 | 84,140,196 |114,190,266|",
"Ford  |Fiesta   | 5 | 5 | 1.2/1.4 | no  | no  | yes | 66,110,154 | 75,125,175 | 96,160,224|",
"Fiat  |Seicento | 4 | 3 | 1.1     | no  | no  | no  | 60,100,140 | 69,115,161 | 84,140,196|Has a full-length sunroof.",
"Daihatsu|Cuore  | 4 | 4 | 1.0     | no  | no  | yes | 57,95,133  | 69,115,161 | 90,150,210|",
"VW      |Polo   | 4 | 4 | 1.2     | no  | no  | yes | 72,120,168 | 78,130,182 |102,170,238|New model, full-spec, superb car for Kefalonia",
"Fiat    |Scudo  | 9 | 3 | 2.0     | no  | no  | yes | 177,295,413|210,350,490 |240,400,560|",
"Suzuki  |Vitara | 4 | 2 | 1.6     | yes | yes | no  | 108,180,252|108,180,252 |144,240,336|",
"Suzuki  |Jimny  | 4 | 2 | 1.3     | yes | yes | no  | 108,180,252|108,180,252 |144,240,336|"
//END ARRAY 
//############################
)


var contacts = new Array(
//#############################
//BEGIN NOTES
//For each of the contact departments, write the name and email address separated with a pipe |
//The pipe key is the left shift key and the backslash \ button next to it. 
//NO SPACES BEFORE OR AFTER THE PIPE
//END NOTES BEGIN ARRAY
//############################
"pefanis@pefanis-travel.com|Car Hire Enquiry",//Open quotes" write date close quotes", comma
"pefanis@pefanis-travel.com|Exchange Rate Enquiry",// "", comma
"pefanis@pefanis-travel.com|Excursions Enquiry",// "", comma
"pefanis@pefanis-travel.com|General Enquiry",// "", comma
"admin@javascriptcart.com|Site Problems"//last one has "quotes" but no comma
//Leave Site Problems because it emails Gary Fooks webmaster
//END ARRAY 
//############################
)

