See if this helps:
(function( $ ){
var _defaults = {
message = 'Hello World!',
animSpeed = 300,
animType = 'fadeIn',
icon = 'pin',
btnText = 'Purchase',
btnColor = 'pink',
btnLink = 'http://www.google.com'
};
$.pluginName = function( opts ) {
var o = $.extend( {}, _defaults, opts )
, $bar = $('.mn_bar').addClass('animated '+ animType)
, $close = $('')
, $icon = $('')
, $message = $(''+ o.message +'')
, $link = $(''+ o.btnText +'');
$close.click(function(){
$bar.animate({ top: '-50px' }, animSpeed );
});
$bar.append( $bar, $close, $icon, $message, $link );
};
})( jQuery );