// The following variable declarations describe the appearance and behavior of the video selector.

	// Ordered list of video ids to use for player. Should correspond in order to the labels specified in LABELS.
	VIDEO_IDS = new Array("-16m2t9dAI4", "HBmNBjaiRKQ", "MgnH524TogA", "ldtFun-4ccg", "yC2IAx4JbmM");
	
	// Ordered list of the ids of the video toggle labels. Should correspond in order to the video IDs specified in VIDEO_IDS.
	LABELS = new Array("vl1", "vl2", "vl3", "vl4", "vl5");
	
	// The dimensions of the actual embedded video
	videoWidth = 480;
	videoHeight = 375;
	
	// Characteristics of label when selected
	vlhighlightcolor = "gold";
	vlhighlightwidth = "120px";
	vlhighlightindent = "0px";
	vlhighlightfontweight = "bold";
	vlhighlightborder = "1px solid black";
	
	// Characteristics of label when not selected
	vlnormalcolor = "#eeeeee";
	vlnormalwidth = "100px";
	vlnormalindent = "10px";
	vlnormalfontweight = "normal";
	vlnormalborder = "1px solid black";
	
	// Mouseover color of unselected labels (selected label does not change on mouseover)
	vlhovercolor = "goldenrod";
	
	// Style of the border on the outside of all the labels (inner border is specified in CSS)
	vloutsideborder = "1px solid black";
	
	// Style of the top and bottom shadows of the selected label
	vltopshadowborder = "0px solid gray";
	vlbottomshadowborder = "3px solid black";
	
	// Width of the shadows on the top and bottom ends of the label area
	vlendshadowlength = "120px";

