// jQuery media player
// This code will automatically insert a flash music player above any link to mp3 file
// Example of html: <a href="music.mp3">Great song</a>
// will only work online, not on local computer, due to absolute link to player
$(function() {	
		   
	$('a[href$="mp3"]').media({ 	// link with hreff attribute ending with mp3
		width: 400, 
		height: 24, // 24px for audio player
		flashvars: {lightcolor: 'FFC000'} 	// highlight color
	});	
	
});
