
$(document).ready(function(){
    $(".product-column").hover(
        function() {
            $(this).addClass('product-column-selected');
            // show movie
            
        },
        function() {
            $(this).removeClass('product-column-selected');
            //hide movie
        }
    );
});