function selectVideo(obj){
	var urlString = window.location.protocol + "//" + window.location.hostname + "/";
	var selectedVideo = obj.options[obj.selectedIndex];
	if (selectedVideo.value != "nothing"){
		window.location = urlString + selectedVideo.value;
	}
}