// JavaScript Document

var ShowArray;
var categoryandshowpath;


function createShowArrayExternal(){	


categoryandshowpath = "film/theoriginofthespecies";


ShowArray = new Array(6);

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);
ShowArray [5] = new Array(5);

//For set 1

//root

ShowArray [0][0] = "content/"+categoryandshowpath+"/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/"+categoryandshowpath+"/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/"+categoryandshowpath+"/set3";


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] = 0;



//For set 4

//root

ShowArray [3][0] = "content/"+categoryandshowpath+"/set4";


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 4

//root

ShowArray [4][0] = "content/"+categoryandshowpath+"/set5";


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;


//For set 4

//root

ShowArray [5][0] = "content/"+categoryandshowpath+"/set6";


ShowArray [5][1] = 1;

//number of thumbs on the left

ShowArray [5][2] = 0;

//number of thumbs on the right

ShowArray [5][3] = 0;


//number of center thumbs

ShowArray [5][4] = 0;










return(ShowArray);


}



