			<!-- Begin
var links = 6; // set this to the number of links you have below!
var date = new Date();
var rd = date.getSeconds();
var ra = rd % links;
var re = ++ra;
var url = "document.write(re)";
var text = "";
if (re == 1) {
url = "../search/?loc=delhi&search=real+estate"; 
text = "Delhi Real estate listings"; 
} 
if (re == 2) {
url = "../search/?loc=chennai&search=real+estate"; 
text = "Chennai Real estate listings";
} 
if (re == 3) {
url = "../search/?loc=mumbai&search=real+estate"; 
text = "Mumbai Real estate listings";
} 
if (re == 4) {
url = "../search/?loc=bangalore&search=real+estate"; 
text = "Bangalore Real estate listings";
} 
if (re == 5) {
url = "../search/?loc=pune&search=real+estate"; 
text = "Pune Real estate listings";
} 
if (re == 6) {
url = "../search/?loc=hyderabad&search=real+estate"; 
text = "Hyderabad Real estate listings";
} 
var link="<A TARGET=\"_top\" HREF=\""+url+"\" onMouseOver=\"window.status='"+text+"'\">"+text+"</A>";
document.write(link); 
// End -->