

// global for flv player location
$.fn.media.defaults.flvPlayer='/digital_media/mediaplayer/player.swf';
$.fn.media.defaults.mp3Player='/digital_media/mediaplayer/player.swf';

// JavaScript Document
$(document).ready(function(){
  $('#content a').each(function(){
    var mediaPath = '/digital_media/';
    var url = $(this).attr('href');
    if (url.substr(0, mediaPath.length) === mediaPath){
      
      // add the media plugin to this item
      
      $(this).media({width:$(this).parent().width(),height:$(this).parent().width()});

    } /* else if (url.indexOf("youtube.com") > -1) {
      $(this).media({type:'swf',width:$(this).parent().width(), height:$(this).parent().width()});
    } */
  });
});
