jQuery((function ($) { // this runs on document.ready and has a local $ bound to jQuery

    // Session::flashMessage
    $('.dismiss', '#flashMessage').click(function () {
        $('#flashMessage').slideUp('fast');
        return false;
    });

//    setTimeout(function() {
//        $('#flashMessage').slideUp('slow');
//    }, 15000);
})(jQuery));


// Globals
window.util = {};

