diff --git a/video_init.js b/video_init.js
index e6fdd947c5..63b7f055f4 100644
--- a/video_init.js
+++ b/video_init.js
@@ -35,7 +35,13 @@ loadNewVideo(streams["1.0"], ${ position });
function add_speed(key, stream) {
var id = 'speed_' + stream;
- $("#video_speeds").append('
'+key+'x');
+ //TODO: this should be smarter and know which video is first selected when we have
+ // video speed as an option/parameter per user that is saved
+ if (key == 1.0) {
+ $("#video_speeds").append(' '+key+'x');
+ } else {
+ $("#video_speeds").append(' '+key+'x');
+ }
$("#"+id).click(function(){
change_video_speed(key, stream);