$(function() {
		
           	$(".product_thumb_title").each(function(){
           	
           	var attr = $(this).attr('title');
     	    
            $(this).qtip({

 		    content: {
      			url: 'modules/booktips/booktip.php',
      			data: { sinopsis: attr },
      			method: 'get'
   		     },
	     	 style: {
			 width: 165,
			 height: 159,
      			 padding: 0,
     			 background: '#ffffff',
      			 color: 'black',
     			 textAlign: 'center',
			 border: {
      				width: 1,
         			radius: 1,
        			color: '#eeeeee'
      			}
		 },
  		 	position: {
      			corner: {
         			target: 'product_thumb_title'
      			},
		 		adjust: { 
		 			y: -160 
		 		}		 
  		 	},
  		 	show: { 
  		 		show: 'mouseover',
  		 		effect: {
  		 			type: 'fade',
  		 			length: 0,
  		 		}
  		 	}
            });
            });
});

