/*----------------------------------------------------
// JSImages.js
//
// 
// Ugo Bachetti  ubachetti@hartco.com
// Hart Stores Inc.
//
//--------------------------------------------------*/
	
		ns=window.navigator.appName == "Netscape"
		ie=window.navigator.appName == "Microsoft Internet Explorer"
		
		if (document.images)
		{
			
			pic1= new Image;
			pic1.src="/Images/ImgClothing1.gif";  
			pic2= new Image; 
			pic2.src="/Images/ImgClothing2.gif"; 
			pic3= new Image;
			pic3.src="/Images/ImgClothing3.gif";  
			pic4= new Image;
			pic4.src="/Images/ImgClothing4.gif";  
			pic5= new Image;
			pic5.src="/Images/ImgClothing5.gif";
			pic6= new Image;
			pic6.src="/Images/ImgClothing6.gif";
			pic7= new Image;
			pic7.src="/Images/ImgClothing7.gif";
			pic8= new Image;
			pic8.src="/Images/ImgClothing8.gif";
			
			pic9= new Image; 
			pic9.src="/Images/ImgSoftLine1.gif"; 
			pic10= new Image;
			pic10.src="/Images/ImgSoftLine2.gif";			
			
			pic11= new Image; 
			pic11.src="/Images/ImgHardLine1.gif"; 
			pic12= new Image;
			pic12.src="/Images/ImgHardLine2.gif";  
			pic13= new Image;
			pic13.src="/Images/ImgHardLine3.gif";  
			pic14= new Image;
			pic14.src="/Images/ImgHardLine4.gif"; 
			pic15= new Image;
			pic15.src="/Images/ImgHardLine5.gif";  
			pic16= new Image;
			pic16.src="/Images/ImgHardLine6.gif";  
			pic17= new Image;
			pic17.src="/Images/ImgHardLine7.gif"; 
			pic18= new Image;
			pic18.src="/Images/ImgHardLine8.gif"; 
			pic19= new Image;
			pic19.src="/Images/ImgHardLine9.gif"; 
			pic20= new Image;
			pic20.src="/Images/ImgHardLine10.gif"; 
			pic21= new Image; 
			pic21.src="/Images/ImgHardLine11.gif"; 
			pic22= new Image;
			pic22.src="/Images/ImgHardLine12.gif";  
			pic23= new Image;
			pic23.src="/Images/ImgHardLine13.gif";  
			pic24= new Image;
			pic24.src="/Images/ImgHardLine14.gif"; 
			pic25= new Image;
			pic25.src="/Images/ImgHardLine15.gif";
			pic26= new Image; 
			pic26.src="/Images/ImgHardLine16.gif"; 
			pic27= new Image;
			pic27.src="/Images/ImgHardLine17.gif";  
			pic28= new Image;
			pic28.src="/Images/ImgHardLine18.gif";  
			pic29= new Image;
			pic29.src="/Images/ImgHardLine19.gif"; 
			pic30= new Image;
			pic30.src="/Images/ImgHardLine20.gif";
			pic31= new Image; 
			pic31.src="/Images/ImgHardLine21.gif"; 
			pic32= new Image;
			pic32.src="/Images/ImgHardLine22.gif";  
			pic33= new Image;
			pic33.src="/Images/ImgHardLine23.gif";  
			pic34= new Image;
			pic34.src="/Images/ImgHardLine24.gif"; 
			pic35= new Image;
			pic35.src="/Images/ImgHardLine25.gif"; 
			pic36= new Image;
			pic36.src="/Images/ImgHardLine26.gif"; 
			pic37= new Image;
			pic37.src="/Images/ImgHardLine27.gif"; 
			
		
			
		}
	
		var imgOneDelay=2500;
		var imgTwoDelay=	2000;
		var imgThreeDelay=2750;
		var pic_width = 144;
		var pic_height = 144;			
		var ConstNumOfPictures = 37;
		var intPictureNo=0;
					
					 
		var imgPicture = new Array(37); 
		imgPicture[0]=pic8.src;
		imgPicture[1]=pic30.src;
		imgPicture[2]=pic9.src;
		imgPicture[3]=pic16.src;
		imgPicture[4]=pic27.src;
		imgPicture[5]=pic1.src; 	
		imgPicture[6]=pic23.src;
		imgPicture[7]=pic32.src;
		imgPicture[8]=pic2.src;
		imgPicture[9]=pic17.src;
		imgPicture[10]=pic28.src;
		imgPicture[11]=pic10.src;
		imgPicture[12]=pic15.src;
		imgPicture[13]=pic3.src;
		imgPicture[14]=pic24.src;
		imgPicture[15]=pic11.src;
		imgPicture[16]=pic20.src;
		imgPicture[17]=pic19.src;
		
		imgPicture[18]=pic12.src;
		imgPicture[19]=pic25.src;
		imgPicture[20]=pic4.src;
		imgPicture[21]=pic5.src;
		imgPicture[22]=pic29.src;
		imgPicture[23]=pic13.src; 	
		imgPicture[24]=pic21.src;
		imgPicture[25]=pic6.src;
		imgPicture[26]=pic26.src;
		imgPicture[27]=pic14.src;
		imgPicture[28]=pic31.src;
		imgPicture[29]=pic7.src;
		imgPicture[30]=pic33.src;
		imgPicture[31]=pic22.src;
		imgPicture[32]=pic18.src;
		imgPicture[33]=pic34.src;
		imgPicture[34]=pic35.src;
		imgPicture[35]=pic36.src;
		imgPicture[36]=pic37.src;
		
					
		function ChangeFirstImage()
		{
		   setTimeout('ChangeFirstImage2()',imgOneDelay);  
		}

		function ChangeFirstImage2()
		{
			intPictureNo+=1;

			if (intPictureNo>ConstNumOfPictures-1)
				intPictureNo=0;

			document['img1'].src=imgPicture[intPictureNo];
			setTimeout('ChangeFirstImage2()',imgOneDelay);         
		}
					
		function ChangeSecondImage()
		{
			setTimeout('ChangeSecondImage2()',imgTwoDelay);
		}
					
		function ChangeSecondImage2()
		{
			intPictureNo+=1;
			if (intPictureNo>ConstNumOfPictures-1)
				intPictureNo=0;
							
			document['img2'].src=imgPicture[intPictureNo];	
			setTimeout('ChangeSecondImage2()',imgTwoDelay);
		}
					
					
		function ChangeThirdImage()
		{
			setTimeout('ChangeThirdImage2()',imgThreeDelay);
		}
					
		function ChangeThirdImage2()
		{
			intPictureNo+=1;
						
			if (intPictureNo>ConstNumOfPictures-1)
				intPictureNo=0;
							
			document['img3'].src=imgPicture[intPictureNo];	
			setTimeout('ChangeThirdImage2()',imgThreeDelay);
		}
