jQuery(document).ready(function(){

    $(".popup_coupon_holder").hover(
        function () {
            $(this).find('.popup_coupon').addClass("hover");
        },
        function () {
            $(this).find('.popup_coupon').removeClass("hover");
        }
    );

})
