(function($){
    
    $(function(){
        
        var $flashMsg = $('div#flash-message').hide();
        
        if ($flashMsg.length) {
            
            $.notifyBar({
                html: $flashMsg.html(),
                delay: 5000,
                animationSpeed: "normal",
                cls: $flashMsg.attr('class')
            });        
            
            
        }
        
        
        
        
    });
    
    
})(jQuery);


