// JavaScript Document
jQuery.noConflict();

jQuery(document).ready(
	function() {
		jQuery('a.mp3Link').html('').flash(
			{ src: '/flash/singlemp3player.swf', height: 20, width: 100 },
			{ version: 7 },
			function(htmlOptions) {
				$this = jQuery(this);
				htmlOptions.flashvars.file = $this.attr('href');
				$this.before(jQuery.fn.flash.transform(htmlOptions));						
			}
		);			  	
	}
);