var video;
$(document).ready(function() {
  $("#random-episodes .items").randomize(".episode");
  $('.episode img[title]').tooltip({position:'bottom center'});
  $('.scroller').scrollable();
});


(function($) {

  $.fn.randomize = function(childElem) {
    return this.each(function() {
      var $this = $(this);
      var elems = $this.children(childElem);

      elems.sort(function() { return (Math.round(Math.random())-0.5); });  

      $this.remove(childElem);  

      for(var i=0; i < elems.length; i++)
      $this.append(elems[i]);      

    });    
  }
})(jQuery);
