// JavaScript Document

var ShowArray;



function createShowArrayExternal(){	

ShowArray = new Array(5);

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

//For set 1

//root

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

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

ShowArray [0][1] = 1;

//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/wrightverdicts/set2";

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

ShowArray [1][1] = 0;

//number of thumbs on the left

ShowArray [1][2] = 3;

//number of thumbs on the right

ShowArray [1][3] = 2;

//number of center thumbs

ShowArray [1][4] = 0;



//For set 3

//root

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

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

ShowArray [2][1] = 1;

//number of thumbs on the left

ShowArray [2][2] = 0;

//number of thumbs on the right

ShowArray [2][3] = 0;

//number of center thumbs

ShowArray [2][4] = 2;



//For set 4

//root

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

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

ShowArray [3][1] = 1;

//number of thumbs on the left

ShowArray [3][2] = 0;

//number of thumbs on the right

ShowArray [3][3] = 0;


//number of center thumbs

ShowArray [3][4] = 0;



//For set 5

//root

ShowArray [4][0] = "content/television/wrightverdicts/set5";

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

ShowArray [4][1] = 1;

//number of thumbs on the left

ShowArray [4][2] = 0;

//number of thumbs on the right

ShowArray [4][3] = 0;

//number of center thumbs

ShowArray [4][4] = 0;










return(ShowArray);


}


