// JavaScript Document
(function() {
var imgs = new Array(); var imgcnt = 0; var thisimg = 0;
imgs[imgcnt++] = 'http://www.getkp.com/images/HP\/OH15022012IntCity.jpg';
imgs[imgcnt++] = 'http://www.getkp.com/images/HP\/ID-20783.jpg';
imgs[imgcnt++] = 'http://www.getkp.com/images/HP\/ID-20812.jpg';
imgs[imgcnt++] = 'http://www.getkp.com/images/HP\/ID-20830.jpg';
imgs[imgcnt++] = 'http://www.getkp.com/images/HP\/ID-20877.jpg';
//imgs[imgcnt++] = 'http://www.getkp.com/images/HP\/ID-20471.jpg';


var imgsLink = new Array(); var imgLcnt = 0;
imgsLink[imgLcnt++] = 'http://www.getkp.com/images/HP\/OH15022012IntCity.jpg';
imgsLink[imgLcnt++] = 'http://kpdubai.gotdns.com:8085/REMS/search/PropertyView.aspx?Ref=20783';
imgsLink[imgLcnt++] = 'http://kpdubai.gotdns.com:8085/REMS/search/PropertyView.aspx?Ref=20812';
imgsLink[imgLcnt++] = 'http://kpdubai.gotdns.com:8085/REMS/search/PropertyView.aspx?Ref=20830';
imgsLink[imgLcnt++] = 'http://kpdubai.gotdns.com:8085/REMS/search/PropertyView.aspx?Ref=20877';
//imgsLink[imgLcnt++] = 'http://kpdubai.gotdns.com:8085/REMS/search/PropertyView.aspx?Ref=20471';
//imgsLink[imgLcnt++] = 'http://10.0.0.90/REMS/search/PropertyView.aspx?pid=22712';
//imgsLink[imgLcnt++] = 'http://10.0.0.90/REMS/search/PropertyView.aspx?pid=22713';
//imgsLink[imgLcnt++] = 'http://10.0.0.90/REMS/search/PropertyView.aspx?pid=22714';
//imgsLink[imgLcnt++] = 'http://10.0.0.90/REMS/search/PropertyView.aspx?pid=22715';


function rotate() 
{
	if (document.images) 
	{
	thisimg++;
	if (thisimg >= imgcnt) thisimg = 0;
	document.getElementById('rollimg').src = imgs[thisimg];
	document.getElementById('Rban').href = imgsLink[thisimg];
	}
}

setInterval(rotate,5000);
})();
