	// Array Declaration:
	var slides = new Array("images/home/ss_ati_t.gif",
						   "images/home/ss_clw_t.gif",
						   "images/home/ss_ips_t.gif",
						   "images/home/ss_gsbc_t.gif",
						   "images/home/ss_jes_t.gif",
						   "images/home/ss_lsp_t.gif",
						   "images/home/ss_mmp_t.jpg",
						   "images/home/ss_bgp_t.gif",
						   "images/home/ss_nhl_t.gif",
						   "images/home/ss_bcba_t.gif",
						   "images/home/ss_cae_t.gif",
						   "images/home/ss_epv_t.gif",
						   "images/home/ss_sd_t.gif",
						   "images/home/ss_trs_t.jpg",
						   "images/home/ss_tpc_t.jpg");		   
	
	// Variable Declaration:
	var thisSlide = 0;
	var slideCount = slides.length;
	
	// Array Declaration:
	var slides2 = new Array("images/home/ss_bhi_t.jpg",
							"images/home/ss_bti_t.gif",
							"images/home/ss_cei_t.jpg",
							"images/home/ss_ff_t.gif",
							"images/home/ss_isq_t.gif",
							"images/home/ss_ksm_t.gif",
						   "images/home/ss_har_t.jpg",
						   "images/home/ss_jka_t.jpg",
						   "images/home/ss_msn_t.gif",
						   "images/home/ss_ncr_t.gif",
						   "images/home/ss_ra_t.jpg",
						   "images/home/ss_ppt_t.gif",
						   "images/home/ss_tds_t.gif",
						   "images/home/ss_rbf_t.jpg");		   
	
	// Variable Declaration:
	var thisSlide2 = 0;
	var slideCount2 = slides2.length;

	
	
	function rotate()
	{
	
		// if there are images objects in the document
		if (document.images)
		{
			// add one to the value of thisAd
			thisSlide++;
			
			//if value of thisAd is equal to the value of imageCount
			if (thisSlide == slideCount)
			{
				// then reset thisAd to zero
				thisSlide = 0;
			} // end if
		// display the item in the adImages array that is at the index of the thisAd variable value
		document.slide.src = slides[thisSlide];		
		
		setTimeout("rotate();", 3 * 1000);
		} // end if		
	} // end rotate()
	
	function rotate2()
	{
	
		// if there are images objects in the document
		if (document.images)
		{
			// add one to the value of thisAd
			thisSlide2++;
			
			//if value of thisAd is equal to the value of imageCount
			if (thisSlide2 == slideCount2)
			{
				// then reset thisAd to zero
				thisSlide2 = 0;
			} // end if
		// display the item in the adImages array that is at the index of the thisAd variable value
		document.slide2.src = slides2[thisSlide2];		
		
		setTimeout("rotate2();", 4 * 1000);
		} // end if		
	} // end rotate2()
	
	