<!-- hide me

var i = 1;

banner1= new Image();

banner1.src = "images/banner/adbanner1.jpg";

banner2 = new Image();

banner2.src = "images/banner/adbanner2.jpg";

banner3 = new Image();

banner3.src = "images/banner/adbanner3.jpg";



var links = new Array

/* 

Put your link between the quotation marks " and " if they are outside of the domain make 

sure that you indicate that with something like: http://www.mydomain.com/thislink.html  

*/

links[1] = "prop_serenity.php"

links[2] = "prop_golf_hua_hin.php" 

links[3] = "prop_park_pattaya.php"



var description = new Array

description[1] = "Purchase Real Estate in Thailand Company Vauban"

description[2] = "Buy or rent Properties in Thailand Company Vauban"

description[3] = "Company Vauban brings you the best properties!"


function loadBanner(){



        var time= new Date();

        hours= time.getHours();

        mins= time.getMinutes();

        secs= time.getSeconds();

        closeTime=hours*3600+mins*60+secs;

        closeTime+=5;	/* rotation speed */

        Timer();



}



function Timer(){

        var time= new Date();

        hours= time.getHours();

        mins= time.getMinutes();

        secs= time.getSeconds();

        curTime=hours*3600+mins*60+secs

        if (curTime>=closeTime){

		if (i < 3){

			i++;

			document.banner.src = eval("banner" + i + ".src");

		}

		else{

			i = 1;

			document.banner.src = eval("banner" + i + ".src");

		}

		loadBanner();

	}

        else{

                window.setTimeout("Timer()",1000)}



}



function clickLink(){

	top.location = links[i]

}



function descript(){

	window.status = description[i]

}



function nothing() {

	window.status=""

}

// show me -->