// JavaScript Document
window.addEvent('domready', function()
{
  $$('.related_video_holder').addEvents({
    'domready':function(){
      this.removeClass('related_video_holder');
      this.addClass('related_video_holder_rolled');
      this.removeClass('related_video_holder_rolled');
      this.addClass('related_video_holder');
    },
    'mouseenter':function(){
      this.removeClass('related_video_holder');
      this.addClass('related_video_holder_rolled');
    },
    'mouseleave':function(){
      this.removeClass('related_video_holder_rolled');
      this.addClass('related_video_holder');
    },
    'click':function(){
      var targetId = this.id.substring(14);
      var linkdown = $('related_video_url_'+targetId).href
      window.location = linkdown;  
    }
  }); 
});