/*
Script by FPMC at http://jsarchive.8m.com
Submitted to JavaScript Kit (http://javascriptkit.com)
For this and 400+ free scripts, visit http://javascriptkit.com
*/

//set image paths
src = [
"templates/new/main/images/developments/Homepage/House2.jpg",
"templates/new/main/images/developments/Homepage/Internal2.jpg",
"templates/new/main/images/developments/Homepage/House1.jpg",
"templates/new/main/images/developments/Homepage/Internal1.jpg",
"templates/new/main/images/developments/Homepage/House3.jpg",
"templates/new/main/images/developments/Homepage/Internal3.jpg",
"templates/new/main/images/developments/Homepage/House4.jpg"

]

//set duration for each image
duration = 4;

//Please do not edit below
ads=[]; ct=0;
function switchAd() {
var n=(ct+1)%src.length;
if (ads[n] && (ads[n].complete || ads[n].complete==null)) {
document["Ad_Image"].src = ads[ct=n].src;
}
ads[n=(ct+1)%src.length] = new Image;
ads[n].src = src[n];
setTimeout("switchAd()",duration*1000);
}
function doLink(){
location.href = url[ct];
} 
//-->
