/*
    Plugin that was to be designed to handled interaction of the overlays of each product hover
*/
(function($) {
    
    $.fn.products = function(options) {

        var defaults = {

        };
        var options = $.extend(defaults, options);
        
        

        
        return this.each(function() { 
            obj = $(this);
        
            obj.click(function(){
                
            });
            
        });

    };

})(jQuery);

