jQuery(document).ready(function() {

	flanum=1;
	jQuery('a[href$=.mp3]').each( function() { 
	
		ikey = jQuery(this).attr('href');
		title = jQuery(this).html().replace(/[,"']/g, '');
		jQuery(this).after('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/"   WIDTH="234" HEIGHT="39" id="flaMovieflanum'+flanum+'&cache=now"> <PARAM NAME=movie VALUE="/mp3player/mp3.swf?flashVarText='+ikey+'&titletrack='+title+'">  <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#FFFFFF>  <EMBED src="/mp3player/mp3.swf?flashVarText='+ikey+'&titletrack='+title+'&cache=12-12-2010" quality=high bgcolor=#FFFFFF WIDTH="234" HEIGHT="39" NAME="flaMovie1" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"> </EMBED></OBJECT>');
		jQuery(this).remove(); 
		flanum++;
	
	})


});


