hookah = new function()
{
  this.init = function()
  {
    hookah.initMessages()
  }
  this.initMessages = function()
  {
    if( $( '.message-list' ).html() && $( '.message-list-to-show' ).html() )
    {
      np_show_nice_popup( $( '.message-list-to-show' ).html() )
    }
  }
}

$( function() {hookah.init()} )

