$(function() {
	$("a[href*='.mp3']").bind('click', function(e) {
		alert('Right-click the "Download MP3"\nlink and select "Save As..."');
		return false;
	});
});