(function($) {
// definición de la función   
$.fn.Mp3 = function(options){   
     
         
            var opts = $.extend({}, $.fn.Mp3.defaults, options);   
        
      

         this.each(function(){
							$(this).html("");
							$(this).html(
							 "<object type=\"application/x-shockwave-flash\" data=\"http://www.26noticias.com.ar/images/flash/reproductor_mp3.swf?mp3="+opts.path+"\" width=\"310\" height=\"24\">"+
							 "<param name=\"movie\" value=\"http://www.26noticias.com.ar/images/flash/reproductor_mp3.swf?mp3="+opts.path+"\" />"+
							 "<param name=\"quality\" value=\"High\" />"+
							 "<param name=\"scale\" value=\"ExactFit\" />"+
							 "<param name=\"mp3\" value=\""+opts.path+"\"/>"+
							 "<param name=\"allowFullScreen\" value=\"false\"/>"+
							 "</object>");	
         });   	
}; 

$.fn.Mp3.defaults = {};	
})(jQuery);









