//-- About Page Div text replacement

var firsttext='Established in 2003, TeaHee! has earned a reputation for fabulous food and jovial banter. Tollbooth Cottage had been derelict for over 40 years before Sophie and her trusty team transformed it into the sociable melting pot it is today. Reclaimed furniture and an open plan kitchen give the café a relaxed, homely feel; whilst Rachel heads a team of twenty welcoming waiting staff eager to please.'

var secondtext='Just 26 when she opened Teahee! Sophie was determined to create a super-sociable hive of activity in her home town of Easingwold. Sophie grew up in nearby Nunnington, where her parents had a hotel. Despite being chased around the kitchen by her langoustine wielding mother as a child, Sophie decided to follow her family into the catering industry after leaving college. Sophie forged strong relationships with quality, artisan suppliers whilst heading a deli at a Michelin starred restaurant, learning business skills managing a local bakery. Sophie is married to long suffering Smitey and has a step-daughter, Megan.'

var thirdtext='Dan originally hails from Stafford, but has lived on an organic smallholding just outside Easingwold for 10 years with his gorgeous girlfriend, Matilda. Dan is, to a large extent, self taught, but has worked in several busy restaurant kitchens before perfecting his pastry skills at a local patisserie. Dan has dodgy taste in music, but can dance like Elvis!!'

function writetext(what){
document.getElementById('textarea').innerHTML=''+what+'';
}
function notext(){
document.getElementById('textarea').innerHTML='';
}

//-- End About Page Div text replacement

//-- About Page image replacement

	if (document.images) {
		imageONE = new Image
		imageTWO = new Image
		imageTHREE = new Image
		
		imageONE.src = "images/group.jpg"
		imageTWO.src = "images/sophie.jpg"
		imageTHREE.src = "images/dan.jpg"
	}
	else {
		imageONE = ""
		imageTWO = ""
		imageTHREE = ""
		document.About = ""
	}
	
//-- End about page image replacement

//-- Large Image Press Pre-load
	if (document.images) {
		pressone = new Image
		presstwo = new Image
		pressthree = new Image
		pressfour = new Image
		pressfive = new Image
		
		pressone.src = "images/press/deli_cover.jpg"
		presstwo.src = "images/press/deli1.jpg"
		pressthree.src = "images/press/deli2.jpg"
		pressfour.src = "image/press/deli3.jpg"
		pressfive.src = "images/press/times.jpg"
	}
	else {
		pressone = ""
		presstwo = ""
		pressthree = ""
		pressfour = ""
		pressfive = ""
		document.arrow = ""
	}
//-- End Press image pre-loader

//-- Form Verification

	function validEmail(email) {
			invalidChars = " /:,;"
	
			if (email == "") {						
				return false
			}
			for (i=0; i<invalidChars.length; i++) {	
				badChar = invalidChars.charAt(i)
				if (email.indexOf(badChar,0) > -1) {
					return false
				}
			}
			atPos = email.indexOf("@",1)			
			if (atPos == -1) {
				return false
			}
			if (email.indexOf("@",atPos+1) != -1) {	
				return false
			}
			periodPos = email.indexOf(".",atPos)
			if (periodPos == -1) {					
				return false
			}
			if (periodPos+3 > email.length)	{		
				return false
			}
			return true
		}
		
		function submitIt(contact_form) {			

		if (contact_form.name_given.value == "") {
				alert("Please enter your name")
				contact_form.name_given.focus()
				contact_form.name_given.select()
				return false
			}
			
		if (contact_form.email.value == "") {
				alert("Please enter an email address")
				contact_form.email.focus()
				contact_form.email.select()
				return false
			}
			
		if (contact_form.phone.value == "") {
				alert("Please enter a phone number")
				contact_form.email.focus()
				contact_form.email.select()
				return false
			}
			
		if (!validEmail(contact_form.email.value)) {
				alert("Please check you have correctly given your email address so we can reply to you")
				contact_form.email.focus()
				contact_form.email.select()
				return false
			}

			return true
		}
		
//-- End Form Verification

//-- New Window

function newWindow() {
		boardWindow = window.open("http://www.thepress.co.uk/leisure/fooddrink/restaurantreviews/3728030.TeaHee___3_Tollbooth_Bar__Market_Place__Easingwold/")
	}
	
function newWindow2() {
		boardWindow = window.open("http://www.hambleton.gov.uk/business/funding/flavours.htm")
	}
	
function newWindow3() {
		boardWindow = window.open("http://www.finefoodworld.co.uk/default.asp?parentID=15&id=31")
	}

function newWindow4() {
		boardWindow = window.open("http://www.bbc.co.uk/northyorkshire/content/articles/2006/04/10/greedy_pig_best_tearooms_feature.shtml")
	}
	
function newWindow5() {
		boardWindow = window.open("http://teahee-easingwold.blogspot.com/")
	}
	
function newWindow6() {
		boardWindow = window.open("http://www.johnwilsonwebdesign.co.uk")
	}