﻿jQuery(document).ready(function() {
    // When we click on the image, hide the section.
    $(".msgclose img").click( function() {
        $(".middle-msg").fadeOut(500);
    }); // click
});

