
//var allformats = new Array;
//var allfeatures = new Array;
//var allverticals = new Array;

	var allgallerycreativessections = new Array;

	allgallerycreativessections[0] = new Array; //Section;
	allgallerycreativessections[0][0] = new Array; //Section Details
	allgallerycreativessections[0][0][0] = "innovation"; //Tag Name
	allgallerycreativessections[0][0][1] = "Innovation"; //Title Name
    allgallerycreativessections[0][1] = new Array; // Topics
	allgallerycreativessections[0][1][0] = "innovideo"; //Subsection Tag
	allgallerycreativessections[0][1][1] = "Video"; //Subsection Name;

	allgallerycreativessections[0][2] = new Array; // Topics
	allgallerycreativessections[0][2][0] = "innotakeover"; //Subsection Tag
	allgallerycreativessections[0][2][1] = "Takeover"; //Subsection Name;

	allgallerycreativessections[0][3] = new Array; // Topics
	allgallerycreativessections[0][3][0] = "innofeatured"; //Subsection Tag
	allgallerycreativessections[0][3][1] = "Featured"; //Subsection Name;
	
	allgallerycreativessections[0][4] = new Array; // Topics
	allgallerycreativessections[0][4][0] = "innodynamic"; //Subsection Tag
	allgallerycreativessections[0][4][1] = "Dynamic"; //Subsection Name;
	
	allgallerycreativessections[0][5] = new Array; // Topics
	allgallerycreativessections[0][5][0] = "innoexamples"; //Subsection Tag
	allgallerycreativessections[0][5][1] = "Examples"; //Subsection Name;
	
	allgallerycreativessections[0][6] = new Array; // Topics
	allgallerycreativessections[0][6][0] = "innoyoutube"; //Subsection Tag
	allgallerycreativessections[0][6][1] = "YouTube"; //Subsection Name;
	

	//allgallerycreativessections[0][6] = new Array; // Topics
	//allgallerycreativessections[0][6][0] = "innolatest"; //Subsection Tag
	//allgallerycreativessections[0][6][1] = "Latest"; //Subsection Name;
	
	allgallerycreativessections[1] = new Array; //Section;
	allgallerycreativessections[1][0] = new Array; //Section Details
	allgallerycreativessections[1][0][0] = "formats"; //Tag Name
	allgallerycreativessections[1][0][1] = "Formats"; //Title Name
	
	for(i=0;i<allformats.length;i++){
	allgallerycreativessections[1][i+1] = new Array;
	allgallerycreativessections[1][i+1][0] = allformats[i].toLowerCase();
	//alert(allgallerycreativessections[1][i+1][0]);
	allgallerycreativessections[1][i+1][1] = allformats[i];
	}
	
	allgallerycreativessections[2] = new Array; //Section;
	allgallerycreativessections[2][0] = new Array; //Section Details
	allgallerycreativessections[2][0][0] = "industry"; //Tag Name
	allgallerycreativessections[2][0][1] = "Industry"; //Title Name
	
	for(i=0;i<allverticals.length;i++){
	allgallerycreativessections[2][i+1] = new Array;
	allgallerycreativessections[2][i+1][0] = allverticals[i].toLowerCase();
	allgallerycreativessections[2][i+1][1] = allverticals[i];
	}
	
	allgallerycreativessections[3] = new Array; //Section;
	allgallerycreativessections[3][0] = new Array; //Section Details
	allgallerycreativessections[3][0][0] = "features"; //Tag Name
	allgallerycreativessections[3][0][1] = "Features"; //Title Name
	
	var idoffeatures = 1;	
	for(i=0;i<allfeatures.length;i++){
		var arrayofcats = allfeatures[i].split(",");
		if(arrayofcats[1] != "Video"){
			allgallerycreativessections[3][idoffeatures] = new Array;
			allgallerycreativessections[3][idoffeatures][0] = arrayofcats[0].toLowerCase();
			allgallerycreativessections[3][idoffeatures][1] = arrayofcats[0];
			allgallerycreativessections[3][idoffeatures][2] = arrayofcats[1];
			idoffeatures++;
		}
	}
	
	allgallerycreativessections[4] = new Array; //Section;
	allgallerycreativessections[4][0] = new Array; //Section Details
	allgallerycreativessections[4][0][0] = "video"; //Tag Name
	allgallerycreativessections[4][0][1] = "Video"; //Title Name
	
	var idoffeatures = 1;	
	for(i=0;i<allfeatures.length;i++){
		var arrayofcats = allfeatures[i].split(",");
		if(arrayofcats[1] == "Video"){
			allgallerycreativessections[4][idoffeatures] = new Array;
			allgallerycreativessections[4][idoffeatures][0] = arrayofcats[0].toLowerCase();
			allgallerycreativessections[4][idoffeatures][1] = arrayofcats[0];
			allgallerycreativessections[4][idoffeatures][2] = arrayofcats[1];
			idoffeatures++;
		}
	}
	
	
	