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       Low season         High Season
//make  |model|  seats|doors|CC|convert|4x4|aircon|3days,5days,7days,|3days,5days,7days|SpecialText 

//END NOTES START ARRAY                                      NO SPACES AFTER THIS  |
//############################
"Ford    |Focus  | 5 | 5 | 1.4     | no  | no  | yes | 102,170,238  |  102,170,238 |",
"Ford  |Fiesta   | 5 | 5 | 1.2/1.4 | no  | no  | yes | 87,145,203   |  87,145,203  |",
"Fiat  |Seicento | 4 | 3 | 1.1     | no  | no  | no  | 78,130,182   |  78,130,182  |Has a full-length sunroof.",
"Daihatsu|Cuore  | 4 | 4 | 1.0     | no  | no  | yes | 78,130,182   |  78,130,182  |",
"Fiat    |Scudo  | 9 | 3 | 2.0     | no  | no  | yes | 210,350,490  |  210,350,490 |",
"Suzuki  |Vitara | 4 | 2 | 1.6     | yes | yes | no  | 159,265,371  |  159,265,371 |",
"Suzuki  |Jimny  | 4 | 2 | 1.3     | yes | yes | no  | 144,240,336  |  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
//############################
"pefatour@otenet.gr|Car Hire Enquiry",//Open quotes" write date close quotes", comma
"pefatour@otenet.gr|Exchange Rate Enquiry",// "", comma
"pefatour@otenet.gr|Excursions Enquiry",// "", comma
"pefatour@otenet.gr|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 
//############################
)

