var arrVideos = new Array(); // regular array (add an optional integer

arrVideos[0] = "";
arrVideos[1] = 'F2BC443F-8C52-4A72-959C-CC705E78AC22'
arrVideos[2] = '1C5678EA-C9FD-4270-A97C-E340AB24B30D'
arrVideos[3] = 'C700EEBF-4F03-4FA2-8F51-2A442936D728'
arrVideos[4] = '31bc9dfa-7fd9-41c0-8a7d-cf32d7c21627'
arrVideos[5] = 'b97cd753-885d-428c-bf2b-99a2ef3c8b64'
arrVideos[6] = 'DC321D73-2E36-4365-B4DE-0F30A3B9537E'
arrVideos[7] = '8CDB3970-19C3-4D65-B02B-4C09C70E9587'
arrVideos[8] = '6403deba-083b-402d-9d8d-007fdd05bd5e'
arrVideos[9] = '7146C396-98E7-4D3C-8B0F-24E078A5C6D9'
arrVideos[10] = '053CAF6E-4CF3-4CA4-8E1E-46E7E7421E5C'
arrVideos[11] = '8AC7EAE0-B9B7-46EC-84E6-ADD2175E036E'
arrVideos[12] = '6B5682FF-7DE0-425A-8E6D-894B88F6CEDB'
arrVideos[13] = 'fde5c25e-3b02-41b5-bb9a-351310491043'
arrVideos[14] = 'F81CF8A8-8ED5-4FC9-AD57-697D84DCF1AD'
arrVideos[15] = '706A03A6-FEFB-4816-AD11-43B4A99DA7B6'
arrVideos[16] = '1445DD07-8AD2-404A-BE42-E5378E59F80A'
arrVideos[17] = 'FDDA71BE-68EF-4EB2-A400-C08866E9126E'
arrVideos[18] = '27869CF6-9B07-41B7-BC2D-C352CC258947'
arrVideos[19] = 'C0A5D861-3A0A-45F5-9424-51557478052B'

var rndVideo = arrVideos[RandomNumber(19)];

function RandomNumber(MaxNumber) {
	return Math.floor(Math.random() * MaxNumber +1);
}