// JavaScript Document

			  
estilo = {
			width: { max: 650 },
			border: {
				 width: 10,
				 radius: 6,
				 color: '#83b832'
			  },
			  padding: 0, 
			  textAlign: 'left',
			  tip: true, // Give it a speech bubble tip with automatic corner detection
			  name: 'green' // Style it according to the preset 'cream' style
		   };




$(document).ready(function() {
						   
	$('.item_modelo').each(function() {
   
	$(this).qtip({
				 
		hide: { delay: 5,
					effect: { length: 30 }
		},
									  
	   position: {
		  corner: {
			 tooltip: 'leftMiddle',
			 target: 'rightMiddle'
		  },
		  adjust: { x: -22, y: 0 }
	   },	
									  
      content: '<img src="crear_imagen.php?imagen=' + $(this).attr('tooltip') + '&ancho=200&alto=120&dir=modelos" width="200" height="120" border="0" />',
      
	   style: {
		  width: { max: 300 },
		  border: {
			 width: 10,
			 radius: 5
		  },
		  padding: 1, 
		  textAlign: 'center',
		  tip: true, // Give it a speech bubble tip with automatic corner detection
		  name: 'blue' // Style it according to the preset 'cream' style
	   }
	  
   });
   
   });
   
});



