$(document).ready(function() 
{
   // By suppling no content attribute, the library uses each elements title attribute by default
   $('a.fermer').qtip({
      content: {
         text: false // Use each elements title attribute
      },
	  position: {
					corner: {
						tooltip:'bottomLeft',
						target:'rightTop'
					}
	  
				},
      style: {
                  border: {
                     width: 3,
                     radius: 6
                  },
				  tip:true,
                  name: 'dark' // Style it according to the preset 'cream' style
               }
   });
   
    $('a.no_grille').qtip({
      content: {
         text: false // Use each elements title attribute
      },
	  position: {
					corner: {
						tooltip:'bottomLeft',
						target:'centerTop'
					}
	  
				},
      style: {
                  border: {
                     width: 3,
                     radius: 6
                  },
				  tip:true,
                  name: 'dark' // Style it according to the preset 'cream' style
               }
   });
   
    $('a.foot-picardie').qtip({
      content: {
         text: false // Use each elements title attribute
      },
	  position: {
					corner: {
						tooltip:'bottomLeft',
						target:'rightTop'
					}
	  
				},
      style: {
                  border: {
                     width: 3,
                     radius: 6
                  },
				  tip:true,
                  name: 'dark' // Style it according to the preset 'cream' style
               }
   });
   
    $('#rss a').qtip({
      content: {
         text: false // Use each elements title attribute
      },
	  position: {
					corner: {
						tooltip:'bottomRight',
						target:'leftTop'
					}
	  
				},
      style: {
                  border: {
                     width: 3,
                     radius: 6
                  },
				  tip:true,
                  name: 'dark' // Style it according to the preset 'cream' style
               }
   });
   
   $('#footer ul#liens a').qtip({
      content: {
         text: false // Use each elements title attribute
      },
	  position: {
					corner: {
						tooltip:'bottomRight',
						target:'leftTop'
					}
	  
				},
      style: {
                  border: {
                     width: 3,
                     radius: 6
                  },
				  tip:true,
                  name: 'dark' // Style it according to the preset 'cream' style
               }
   });
   
});

