jQuery.noConflict();
(function($) { 
  $(function() {
	$(document).ready(function(){
		$("table tr:odd").addClass("odd");
	
		$('a[@href$="mp3"]').flash(
			{ src: 'flash/mp3player.swf', height: 20, width: "100%" },
			{ version: 7 },
			function(htmlOptions) {
				$this = $(this);
				htmlOptions.flashvars.file = $this.attr('href');
	
				$this.parents("tr").addClass('media_cell');
				$this.after($.fn.flash.transform(htmlOptions));
			}
	    );
	});
  });
})(jQuery);

