// JavaScript Document

var ShowArray;



function createShowArrayExternal(){	

ShowArray = new Array(4);

ShowArray [0] = new Array(5);
ShowArray [1] = new Array(5);
ShowArray [2] = new Array(5);
ShowArray [3] = new Array(5);

//For set 1

//root

ShowArray [0][0] = "content/television/stuckyville/set1";

//initial state (0 = two images up, 1 = 1 in the center, 2 = banner 1, 3 = comicbook)

ShowArray [0][1] = 0;

//number of thumbs on the left

ShowArray [0][2] = 0;

//number of thumbs on the right

ShowArray [0][3] = 0;

//number of center thumbs

ShowArray [0][4] = 0;




//For set 2

//root

ShowArray [1][0] = "content/television/stuckyville/set2";


ShowArray [1][1] = 1;

//number of thumbs on the left

ShowArray [1][2] = 0;

//number of thumbs on the right

ShowArray [1][3] = 0;

//number of center thumbs

ShowArray [1][4] = 0;



//For set 3

//root

ShowArray [2][0] = "content/television/stuckyville/set3";


ShowArray [2][1] = 0;

//number of thumbs on the left

ShowArray [2][2] = 0;

//number of thumbs on the right

ShowArray [2][3] = 2;

//number of center thumbs

ShowArray [2][4] = 0;



//For set 4

//root

ShowArray [3][0] = "content/television/stuckyville/set4";

//initial state (0 = two images up, 1 = 1 image on the left, 2 = 1 image on the right)

ShowArray [3][1] = 0;

//number of thumbs on the left

ShowArray [3][2] = 2;

//number of thumbs on the right

ShowArray [3][3] = 3;


//number of center thumbs

ShowArray [3][4] = 0;








return(ShowArray);


}



