function runImgListFade(counter) 
					{

						var imgList = new Array("small01.jpg","small02.jpg","small03.jpg","small04.jpg","small05.jpg");
						var altList = new Array("","","","","");
						var imgObj = document.getElementById("imgListImage");
						var containerObj = document.getElementById("imgListContainer");
	
						if (imgObj != null && containerObj != null)
					{
		
	    				if (document.all)    
							containerObj.filters[0].apply();
	    				imgObj.src = "images/small/" + imgList[counter];
	    				imgObj.alt = altList[counter];
	    				if (document.all)    
							containerObj.filters[0].play();
	    
	    				if (counter >= imgList.length - 1)
	    				counter = 0
	    			else
	    				counter++;    
	    	
	    			setTimeout("runImgListFade(" + counter + ");",5500)

    				}    
    			
				}


