﻿$(".promo-boxes").hover(function() {
    $(this).find(".promo-description").slideDown();
},
function() {
    $(this).find(".promo-description").slideUp();
});
