$(document).ready(function(){
	
	tooltip();
 });


tooltip = function() {
	var tool = $(".image_aide");
	for (var i=0; i<tool.length; i++) { 
		$(tool[i]).qtip({
   			content: $(tool[i]).attr('alt'),
			style: { 
			 	border: {
        			width: 1,
        			radius: 4,
         			color: '#2e2e2e'
      			},
      			name: 'dark',

				'font-size': 12,
				'font-family': "Georgia, Times New Roman, Times, serif",
				tip: 'leftMiddle' 
   			},
			position: {
      			corner: {
         			target: 'rightMiddle',
         			tooltip: 'leftMiddle'
     			 }
  			},
   			show: 'mouseover',
   			hide: 'mouseout',
			effect:{ type:"shake"}
		})
	}
	
}