/*				var quote= new Array(6);
				var quote_link= new Array(6);
				var i=0;
				quote[0]="http://www.winentrance.com/Google_Alternate/images/verbal.gif"
				quote[1]="http://www.winentrance.com/Google_Alternate/images/General.gif"
				quote[2]="http://www.winentrance.com/Google_Alternate/images/NDA.gif"
				quote[3]="http://www.winentrance.com/Google_Alternate/images/SSB.gif"
				quote[4]="http://www.winentrance.com/Google_Alternate/images/CDS.gif"
				quote[5]="http://www.winentrance.com/images/10th.gif"
		
				quote_link[0]="http://www.winentrance.com/torcd.asp";
				quote_link[1]="http://www.winentrance.com/gscd.asp";
				quote_link[2]="http://www.winentrance.com/ndacd.asp";
				quote_link[3]="http://www.winentrance.com/ssbcd.asp";
				quote_link[4]="http://www.winentrance.com/cdscd.asp";
				quote_link[5]="http://www.winentrance.com/subject_question_bank_cd.html";
				
				document.getElementById("Cd_Banner_link").href =quote_link[0];
				document.getElementById("Cd_Banner").src=quote[0];
				
				timerID = setInterval("Rotate_Banner()",1000);		
				var timeCount = 1;
				
				  function Rotate_Banner()
				  {
						timeCount++;
						if(timeCount==50)
							timeCount=1;
						//if the time is up
						if ((timeCount%10)==0)
						{
							if(i==5)
								i=0;
							else
								i++;
							document.getElementById("Cd_Banner_link").href =quote_link[i];
							document.getElementById("Cd_Banner").src=quote[i];
						}
				  }*/
