              $(document).ready(function() {
                 $('.product > div').hide();
                 $('.product > img').each(function(){
                    $(this).qtip({
                    content: $(this).parent().children('div').html() ,
                       style: { 
                          width: 400,
                          padding: 15,
                          background: '#fff',
                          color: '#666',
                          textAlign: 'left',
                          border: {
                             width: 1,
                             radius: 5,
                             color: '#f5f5f5'
                          },
                          tip: 'bottomLeft'
                          
                       },
                    position: {
                      corner: {
                        target: 'right',
                        tooltip: 'center'
                      }
                   }
                 })   
               });
             });
