var SlideShowSpeed = 12000;
var Caption = new Array(); 


Caption[1]  = '<b>"Kairos has been successful here because they did exactly what they said they would do".</b> Charley Lineham, Occupational Health, Sainsburys';
Caption[2]  = '<b>"We have hired Kairos for years as our business has grown and changed. Kairos adapted to all those changes and kept with us"</b> Elle Grappa, office manager TBWA';
Caption[3]  = '<b>"OSM is great, I\'ve used it lots when travelling. It hits the spot every time. Marion\'s got really hot hands!!"</b> Stuart Townsend actor, Cherlize Theron\'s boyfriend';
Caption[4]  = '<b>"I\'ve been using Kairos for 6 years and can\'t recommend them highly enough. You get a chill out session and a boost of energy, all at the same time"</b> Aly Oliver Closer magazine, ex-editor Just Seventeen';
Caption[5]  = '<b>"Marion gives the best massage in the world"</b> Suzy Greaves, The Big Leap, ex-beauty editor of New Woman';
Caption[6]  = '<b>THE BEAUTY OF HAVING AN ON-SITE MASSAGE SERVICE IS IT CAN CURE AN ACHE OR PAIN BEFORE IT BECOMES A REAL PROBLEM.  DEFINITELY A BENEFIT!</b>News International Kathleen Herron';
Caption[7]  = '<b>"Here at Ocean, Kairos has provided their services weekly for 10 years. They are more than just a massage service as they have also provided on-going emotional support to all our staff and their contribution has helped keep our staff supported and motivated"</b> Ocean Design, Dave Bucchan';



var tss;
var jss = 1;
var pss = Caption.length-1;

function runSlideShow()
{

	if (document.getElementById) 
	{
		document.getElementById("captionbox").innerHTML = Caption[jss];
	}

	jss = jss + 1;

	if (jss > pss) 
	{
		jss=1;
	}
	
	tss = setTimeout('runSlideShow()', SlideShowSpeed);
}

function loadImages() {
Image1= new Image(700,525)
Image1.src = "images/1-Welcome.jpg"

Image2 = new Image(700,525)
Image2.src = "images/2-WhatIsOSM.jpg"

Image3 = new Image(700,525)
Image3.src = "images/3-WhyOSM.jpg"

Image4 = new Image(700,525)
Image4.src = "images/4-Chair.jpg"
}


function ChangePostcard(str) {
var ln = 'images/'+str;
document.getElementById('postcards').innerHTML = '<img src="images/' + str + '">';
}

function WriteLinks(str) 
{
	if (str=="clients")
	{
		document.getElementById('postcards').innerHTML = '<a href="http://www.oceandesign.co.uk">www.oceandesign.co.uk</a><br><a href="http://www.unitedagents.co.uk">www.unitedagents.co.uk</a><br><a href="http://www.sainsburys.co.uk">www.sainsburys.co.uk</a><br><a href="http://www.digitas.co.uk">www.digitas.co.uk</a><br><a href="http://www.pfd.co.uk">www.pfd.co.uk</a><br><a href="http://www.tbwa-london.com>www.tbwa-london.com</a><br><a href="http://www.thesun.co.uk">www.thesun.co.uk</a><br><a href="http://www.newsoftheworld.co.uk">www.newsoftheworld.co.uk</a><br><br>...and The Times and The Sunday Times can both be found on <a href="http://www.timesonline.co.uk">www.timesonline.co.uk</a>';	
	}
	else if (str=="links")
	{	
		document.getElementById('postcards').innerHTML = '<a href="http://www.blush.uk.com">www.blush.uk.com</a><br><a href="http://www.aliveandwell.co.uk">www.aliveandwell.co.uk</a><br><a href="http://www.mindtools.com">www.mindtools.com</a><br><a href="http://www.alisonsmethurst.co.uk">www.alisonsmethurst.co.uk</a><br><a href="http://www.tristanmorell.com">www.tristanmorell.com</a><br>';	
	}	
}

function initialise() {
	loadImages();
	runSlideShow();
}
