$(document).ready(function() {
	/* 
	scan through all the content links and based on extension load the correct type of media player
	*/
	$('#content a').each(function(){
		var ext = $(this).attr('href');
		ext = ext.split('.');
		ext = ext[ext.length-1];
		if(ext == 'mp3'){
			$(this).media({
				width:     450, 
			    height:    20, 
			    autoplay:  true, 
				flvPlayer:     '/js/player.swf'
			});
		} else if (ext == 'flv'){
			$(this).media({
				width:     450, 
			    height:    250, 
			    autoplay:  true, 
				flvPlayer:     '/js/player.swf'
			});
		}
	});
});
