// 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({ 	// if attribute href ends with mp3
		width: 400, 
		height: 24, // 24px for audio player
		flashvars: {lightcolor: 'ADBF2D'} // highlight color - green for stijnkuppens
	});
	
	
});
