Line 4: A for loop is created to create an empty MC for the 3 rows of images. The "j" in the loop will start off at 0 and increment by 1 (j++), while j is below 3 (i<order.length). If we had 10 images we would set this to j <10.
Line 5: As the "j" increments, the variable "i" (line 5) will equal one of the empty MC's. So, when j is 1, "i" will hold the path of images1.
Line 6: We also need to attach a mask over each empty MC
Line 7: The x poistion of the mask is set,
Line 8 : Each row of images will have a target x position to go to each time a thumbnail is pressed. The initial target is set 1 pixel before where the mask is placed.
Line 9 : A loop is used to place each meask segment 90 below the previous one.
Line 10 : The images are placed at a Y position of 57,
Line 11: The mask MC is set to mask the image (i) 