Event.addBehavior({
    'a.video:click' : function(){
         new Ajax.Request
    (   this.href, 
        {asynchronous:true,
         evalScripts:true, 
         method:'get'
         }
     ) 
        return false;
},
'a.video_title:click': function(){
    new Effect.toggle( "album_video_"+this.id);
    return false;
},
    'a#video_bio:click' : function(){
        day = new Date();
        id = day.getTime();
        eval("page" + id + " = window.open(this.href, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=650,height=410,left = 520,top = 275');"); 
        return false;}
    
})
