<!-- Begin HEADER OPTIONS CODE

// The following function call is in the onloads js file 
//startCountDown(15, 1000);

function startCountDown(i, p) {
// store parameters
var pause = p;

// make reference to divs
var countDownObj = document.getElementById("countDown");
var imageObj = document.getElementById("Layer1");
if (countDownObj == null) {
// error
   alert("div countDownObj not found, check your id");
  // bail
return;
}
if (imageObj == null) {
// error
   alert("div imageObj not found, check your id");
// bail
return;
}
countDownObj.count = function(i) {
// write out count
//countDownObj.innerHTML = i;
if (i == 0) {
// set up image div

    imageObj.innerHTML = 
	"<ul id=advertise_find><li id=advertise_rental><a href=frenchpropertyforsale/english/french_property_advertise.html><span>Selling your property? Advertise on French Property For Sale Online</span></a></li><li id=find_rental><a href=frenchpropertyforsale/english/french_property_regions.html><span>Looking to purchase a French Property? Search all regions of France on French Property For Sale Online</span></a></li></ul>";
// stop
    return;
}
setTimeout(function() {
// repeat
    countDownObj.count(i - 1);
    },
    pause
    );
}
// set it going
countDownObj.count(i);
}

//  End -->