- function 
	thumbnails_fn(k)
	{ 
 
	
		- thumbnail_mc.createEmptyMovieClip("t"+k,
		thumbnail_mc.getNextHighestDepth());
		
 
		- tlistener =
		new Object();
		
 
		- tlistener.onLoadInit
		= function(target_mc)
		{ 
 
		
			- target_mc._x
			= hit_left._x+(target_mc._width+5)*k;
			
 
			- target_mc.pictureValue
			= k; 
 
			- target_mc.onRelease
			= function()
			{ 
 
			
				- p =
				this.pictureValue-1;
				
 
				- nextImage();
 
			
			- }; 
 
			- target_mc.onRollOver
			= function()
			{ 
 
			
				- this._alpha
				= 50;
				
 
				- thumbNailScroller();
 
			
			- }; 
 
			- target_mc.onRollOut
			= function()
			{ 
 
			
				- this._alpha
				= 100;
 
			
			- };
 
		
		- }; 
 
		- image_mcl =
		new MovieClipLoader();
		
 
		- image_mcl.addListener(tlistener);
		
 
		- image_mcl.loadClip(thumbnails[k],
		"thumbnail_mc.t"+k);
 
	
	- }