// JavaScript Document

$(document).ready(function(){

	//tooltip liste principales activites accueil
	activerInfobulles();

});

function activerInfobulles(){
	$('a.infobulle[title]').qtip({ 
		style: { 
			color: '#fff',
			background: '#494949',
			border: {
				color: '#494949',
				width: 0,
				radius: 10
			},
			padding: 5, 
			lineHeight: '16px',
			textAlign: 'left',
			name: 'light', 
			tip:true
		}, 
		position: {
			corner: {
				target: 'topRight',
				tooltip: 'leftBottom'
			}
		}
	});
}
