<!-- hide me
var i = 1;
banner1= new Image();
banner1.src = "images/banner/banner1.jpg";
banner2 = new Image();
banner2.src = "images/banner/banner2.jpg";
banner3 = new Image();
banner3.src = "images/banner/banner3.jpg";
banner4 = new Image();
banner4.src = "images/banner/banner4.jpg";
banner5 = new Image();
banner5.src = "images/banner/banner5.jpg";
banner6 = new Image();
banner6.src = "images/banner/banner6.jpg";
banner7 = new Image();
banner7.src = "images/banner/banner7.jpg";
banner8 = new Image();
banner8.src = "images/banner/banner8.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] = "dest.html"
links[2] = "dest-Bangkok.html" 
links[3] = "dest-Chiangmai.html"
links[4] = "dest-HuaHin.html"
links[5] = "dest-Pattaya.html"
links[6] = "dest-Phuket.html"
links[7] = "dest-Samui.html"
links[8] = "dest_gallery.html"

var description = new Array
description[1] = "Visit Amazing Thailand Today!"
description[2] = "Buy or rent real estate in Bangkok!"
description[3] = "Company Vauban brings you the best properties!"
description[4] = "Properties for sale or for rent in Thailand!"
description[5] = "Amazing deals on properties in Phuket!"
description[6] = "Luxurious living accomodations in Koh Samui!"
description[7] = "Invest in your future. Buy real estate in Pattaya!"
description[8] = "Real estate, properties, houses, land and more. Company Vauban!"

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 < 8){
			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 -->