// JavaScript Document

/* ************************************ */
/*			TOOLTIP                         */
/* ************************************ */



$('.qtip_unis').each(function(){
	$(this).qtip({	
		content: '<img alt="'+this.alt+'" src="http://www.woodeos.com/themes/prestashop/img/decors/medium/Unis/'+this.alt+'.jpg" />',
		style: { name: 'green', tip:'bottomLeft', width: 175 },
		position: { 	
			corner: {	 
				target: 'topMiddle',
				tooltip: 'bottomLeft'	
			}
		},
		show: { delay:300, solo:true, ready:false, effect: { type: 'fade', length: 50 } }
	});
});
	
$('.qtip_fantaisies').each(function(){
	$(this).qtip({		
		content: '<img alt="'+this.alt+'" src="http://www.woodeos.com/themes/prestashop/img/decors/medium/Fantaisies/'+this.alt+'.jpg" />',
		style: { name: 'green', tip:'bottomLeft', width: 175 },
		position: { 	
			corner: {
				target: 'topMiddle',
				tooltip: 'bottomLeft'	
			}
		},
		show: { delay:300, solo:true, ready:false, effect: { type: 'fade', length: 50 } }
	});
});


$('.qtip_bois').each(function(){
	$(this).qtip({		
		content: '<img alt="'+this.alt+'" src="http://www.woodeos.com/themes/prestashop/img/decors/medium/Bois/'+this.alt+'.jpg" />',
		style: { name: 'green', tip:'bottomLeft', width: 175 },
		position: { 	
			corner: {	 
				target: 'topMiddle',
				tooltip: 'bottomLeft'	
			}
		},
		show: { delay:300, solo:true, ready:false, effect: { type: 'fade', length: 50 } }
	});
});


$('.qtip_ral').each(function(){
	
	$(this).qtip({		
		content: '<img alt="'+this.alt+'" src="http://www.woodeos.com/themes/prestashop/img/decors/medium/ral/'+this.alt+'.jpg" />',
		style: { name: 'green', tip:'bottomLeft', width: 175 },
		position: { 	
			corner: {	 
				target: 'topMiddle',
				tooltip: 'bottomLeft'	
			}
		},
		show: { delay:300, solo:true, ready:false, effect: { type: 'fade', length: 50 } }
	});
});


$('.qtip_essences').each(function(){
	
	$(this).qtip({		
		content: '<img alt="'+this.alt+'" src="http://www.woodeos.com/themes/prestashop/img/decors/medium/Les 9 essences/'+this.alt+'.jpg" />',
		style: { name: 'green', tip:'bottomLeft', width: 175 },
		position: { 	
			corner: {	 
				target: 'topMiddle',
				tooltip: 'bottomLeft'	
			}
		},
		show: { delay:300, solo:true, ready:false, effect: { type: 'fade', length: 50 } }
	});
});




