$(document).ready(function () {
    $( "div.middle_product" ).each(function( index ) {
        if ($(this).find("p").hasClass('disclaimer')) {
            $(this).find("span.linkDisclaimer").show();
        }
    });

    $( "span.linkDisclaimer" ).on("mouseenter click", 
        function () {
            var box = $( this ).parent().parent().find("p.disclaimer"),
            box_height = box.height() > 239 ? 240 : box.height();
            box.css({'position': 'absolute', 'width': '430px', 'top': $(this).position().top - box_height - 2 +'px', 'left': $(this).position().left + 10 + 'px', 'max-height': '240px', 'overflow-y': 'auto', 'overflow-x': 'hidden'}).show();
            //$(this).hide();
        }
    );
    $("p.disclaimer").on("mouseleave", 
        function() {
            $(this).hide();
            //$( this ).parent().parent().find("span.linkDisclaimer").show();
            
        }
    );
});
