// JavaScript Document 
//this data is used for startpage and the 3 big picture displays
// name of title and summary array, name of grouptext array, name of thumbspath array, name of slidespath array, name of main array.
//these names are contained in a standard 'Xn_Index' array which is referenced by a single number on entry. The name of the index array and the required index is setup by the calling script. 
//----------------------------------------
// name of title and summary array, name of grouptext array, name of thumbspath array, name of slidespath array, name of main array.
var BP_Index = new Array();
BP_Index[0] = new Array("B0_Title","B0_Group","B0_TPath","B0_SPath","B0_Main");
BP_Index[1] = new Array("B1_Title","B1_Group","B1_TPath","B1_SPath","B1_Main");
BP_Index[2] = new Array("B2_Title","B2_Group","B2_TPath","B2_SPath","B2_Main");


//--- first picture group---------------------------------------------------------
//Title: Title heading, summary text, associated thumb image(full path)
var B0_Title = new Array("Slideshow of: History and Development - Activity Led Learning Vision","","");
var B0_Group = new Array("Variety of Activity Led Learning experiences");

var B0_TPath = new Array("startphotos/thumbs/");//must match B0_SPath size
//( but thumbs only need one dimension in their array - always local)
var B0_SPath = new Array();// 0 for All (self contained); 1 for Slides (video on SS); 2 for all on ss
B0_SPath[0] = new Array("startphotos/slides/");
B0_SPath[1] = new Array("startphotos/slides/");
B0_SPath[2] = new Array("startphotos/slides/");

var B0_Main = new Array(); 	//folderpath index, pic filename, group text index, detail text
B0_Main[0] = new Array("0","model_group1-m.jpg","0","");
B0_Main[1] = new Array("0","IMG_3581-m.jpg","0","Preparing for Formula Student Competition");
B0_Main[2] = new Array("0","3204686-3600x5410 student-m.jpg","0","Practical Activity in Computing");
B0_Main[3] = new Array("0","Picture-4-MG_2129-students-m.jpg","0","Giving and receiving feedback at a Trade Fair");
B0_Main[4] = new Array("0","Can-Car-(dIMG_4286)-m.jpg","0","Theory into Practice");


//--- second picture group---------------------------------------------------------
var B1_Title = new Array("Slideshow of: History and Development - Activity Led Learning Vision","");//title, summary
var B1_Group = new Array("Supporting Learners and Learning Communities");

var B1_TPath = new Array("startphotos/thumbs/");//must match B0_SPath size
//( but thumbs do not need an alternate path dimension in their array - always local!)
var B1_SPath = new Array ();// 0 for All (self contained); 1 for Slides (video on SS); 2 for all on ss
B1_SPath[0] = new Array("startphotos/slides/");
B1_SPath[1] = new Array("startphotos/slides/");
B1_SPath[2] = new Array("startphotos/slides/");

var B1_Main = new Array();//image path index, image filename, group text index, description text actual
B1_Main[0] = new Array("0","d_MG_1085-m.jpg","0","");
B1_Main[1] = new Array("0","d_MG_1039-m.jpg","0","");
B1_Main[2] = new Array("0","d_MG_1165-m.jpg","0","Mathematics and Statistics Support Centre supported by sigma");
B1_Main[3] = new Array("0","d_MG_1115-m.jpg","0","");
B1_Main[4] = new Array("0","d_MG_1174-m.jpg","0","");


//--- third picture group---------------------------------------------------------
var B2_Title = new Array("Slideshow of: History and Development - Activity Led Learning Vision","");//title, summary
var B2_Group = new Array("Employer and Profession focussed");

var B2_TPath = new Array("startphotos/thumbs/");//must match B0_SPath size
//( but thumbs do not need an alternate path dimension in their array - always local!)
var B2_SPath = new Array ();// 0 for All (self contained); 1 for Slides (video on SS); 2 for all on ss
B2_SPath[0] = new Array("startphotos/slides/");
B2_SPath[1] = new Array("startphotos/slides/");
B2_SPath[2] = new Array("startphotos/slides/");

var B2_Main = new Array(); //number of pictures per window
B2_Main[0] = new Array("0","Picture1.jpg","0","");
B2_Main[1] = new Array("0","Picture2.jpg","0","");
B2_Main[2] = new Array("0","DSCF6057(civil_crop)l-m.jpg","0","Exploring Coventry’s Built Environment");
B2_Main[3] = new Array("0","d_MG_9911-m.jpg","0","");
B2_Main[4] = new Array("0","d_MG_9929-m.jpg","0","Engineering Flight Simulator");
//------------------

