<!-- Begin      HOME PAGE CAPTION SLIDESHOW HEADER


// ==============================
// Set the following variables...
// ==============================

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 7000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 4;

var Caption = new Array(); // don't change this

// Specify the Captions...
// To add more captions, just continue
// the pattern, adding to the array below.
// To use fewer captions, remove lines
// starting at the end of the Caption array.

Caption[1]  = "South West France Holday Gites";
Caption[2]  = "Virtual Tour Websites for holiday rentals";
Caption[3]  = "Check out our website design Styles";
Caption[4]  = "Choose the Package that suits you.";
Caption[5]  = "Questions? - Visit our FAQs page";
Caption[6]  = "Our low Prices will amaze you";
Caption[7]  = "Contact Us or Sign Up Now!";
Caption[8]  = "South West France Holday Gites";
Caption[9]  = "Specialists in websites for holiday rentals";
Caption[10] = "Smart, Affordable, Professional";
Caption[11] = "SIGN UP NOW!";

// =====================================
// Do not edit anything below this line!
// =====================================

var tss;
var jss = 1;
var pss = Caption.length-1;


function runCaptionShow(){
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runCaptionShow()', SlideShowSpeed);
}


// END -->