// happy_flash.js - jquery javascript for making flash message pretty

jQuery.fn.happyFlash = function(message) {
var flash = jQuery(this);
    // flash.html(message);
    // flash.fadeIn(500);
	if (flash.html(message) == null){}
	else {jQuery.jGrowl(flash.html(message));}

    // setTimeout(function() {
    //         flash.fadeOut(1500, function() {
    //             flash.html("");
    //             flash.hide();
    //         });
    //     }, 3000);
	// hotwired happyflash so it shows jGrowl instead! rsw 07/09/09
}

jQuery(document).ready(function() {
    jQuery("div.flash").happyFlash(jQuery(this).html());
});