	 var adNum=0;

	var topAD = new Array();
	var topADlink = new Array();
	var topADALT = new Array();




	topAD[0]="http://www.deshvidesh.com/ads/bhindi.gif";
	topADALT[0]="Bhindi Jewellers";	
	topADlink[0]="http://www.bhindijewellers.com/bhindi.htm";

	topAD[1]="http://www.deshvidesh.com/ads/activepool.gif";
	topADALT[1]="Active Pool";	
	topADlink[1]="http://www.activepool.com/";

	topAD[2]="http://www.myshadi.com/ads/sabnamBanner.gif";
	topADALT[2]="Shabnam Video";	
	topADlink[2]="http://shabnamstudio.com";
		
function bannerRotate()
{
 
  while(true)
  { 
   adNum=Math.round(Math.random()*10);
   if (adNum < topAD.length){
	break;	}
  }

   if (adNum < topAD.length) { nextAd();}
}

function nextAd()
{
	document.images.banner.src = topAD[adNum];
	document.images.banner.alt = topADALT[adNum];
	toplink.href = topADlink[adNum];

}

 



