jQuery(document).ready(function()
{
    // MESSAGE FLASH
    $(".close-red").click(function () {
        $(".msg-red").fadeOut("slow");
    });
    $(".close-blue").click(function () {
        $(".msg-blue").fadeOut("slow");
    });
    $(".close-green").click(function () {
        $(".msg-green").fadeOut("slow");
    });

})
