// JavaScript Document
function headerImg(img){
	var headerImgs = new Array()
	headerImgs[1] = "header01.jpg"
	headerImgs[2] = "header02.jpg"
	headerImgs[3] = "header03.jpg"
	headerImgs[4] = "header04.jpg"
	headerImgs[5] = "header05.jpg"
	headerImgs[6] = "header06.jpg"
	headerImgs[7] = "header07.jpg"
	headerImgs[8] = "header08.jpg"
	headerImgs[9] = "header09.jpg"
	
	var i =Math.floor(Math.random()*8)
	document.getElementById(img).src = "images/" + headerImgs[i+1]
}

function dessertImg(img){
	var headerImgs = new Array()
	headerImgs[1] = "dessert_img01.jpg"
	headerImgs[2] = "dessert_img02.jpg"
	headerImgs[3] = "dessert_img03.jpg"
	headerImgs[4] = "dessert_img04.jpg"
	
	var i =Math.floor(Math.random()*3)
	document.getElementById(img).src = "images/" + headerImgs[i+1]
}

function summerImg(img){
	var headerImgs = new Array()
	headerImgs[1] = "summer_food01.jpg"
	headerImgs[2] = "summer_food02.jpg"
	headerImgs[3] = "summer_food03.jpg"
	headerImgs[4] = "summer_food04.jpg"
	
	var i =Math.floor(Math.random()*3)
	document.getElementById(img).src = "images/" + headerImgs[i+1]
}

function getQuote(img){
	var quote = new Array()
	quote[1] = "If anyone we know is in need of catering services we will certainly be recommending The Exquisite Catering Company.<br><strong>Mrs &amp; Mrs W., Ottery St. Mary, Devon</strong>"
	quote[2] = "Again, we would like to thank you for your excellent service about which a number of our guests commented so favourably.<br><strong>Mr. P., Totnes, Devon</strong>"
	quote[3] = "We certainly were delighted with both the buffet and the meal on Sunday, everything was perfect.<br><strong>Mrs. S, Bishopsteigton, Devon</strong>"
	quote[4] = "We were absolutely delighted with the lovely food and the superb service you provided for J’s wedding...<br><strong>Mrs C., Okehampton, Devon.</strong>"
	
	var i =Math.floor(Math.random()*3)
	document.write(quote[i+1])
}
