jQuery(function($) {
    var href;
    var video_thumbs;
    var audio_thumbs;

    video_thumbs = $('ul.media-thumbs li.video a.thumb');
    audio_thumbs = $('ul.media-thumbs li.audio a.thumb');

    video_thumbs.bind('click',function(e){
        document.location = this.rel;
        return false;
    });

    audio_thumbs.bind('click',function(e){
        document.location = this.rel;
        return false;
    });

});

