//***Start***
$(document).ready(function() {
    $('.mt-item').hover(function() {
        //PopText
        $(this).find('div.mt-caption').stop(false,true).fadeIn(200);
    },
    function() {
        //HideText
        $(this).find('div.mt-caption').stop(false,true).fadeOut(200);
    });
});

$(document).ready(function() {
    $('.mt-item2').hover(function() {
        //PopText
        $(this).find('div.mt-caption2').stop(false,true).fadeIn(200);
    },
    function() {
        //HideText
        $(this).find('div.mt-caption2').stop(false,true).fadeOut(200);
    });
});
//***End***
