$(document).ready(function(){
    $("div.new-product-content").mouseover(function(){
        $(this).addClass('new-product-content-hover');
    });
    $("div.new-product-content").mouseout(function(){
        $(this).removeClass('new-product-content-hover');
    });
});

