/***********************************************
 *
 * DÉFINITION DES DIFFÉRENTES TOOLTIPS DE SM
 *
 **********************************************/

function special_events_fiche_tooltip(){
    $('.ouverture').qtip({
        content: 'Ouverture exceptionnelle',
	position: {
	    corner: {
	        tooltip: 'topMiddle',
	        target: 'bottomMiddle'
	     }
	},
	style: {
	    border: {
	        radius: 3,
	        width: 3,
	    },
	    padding: 10,
	    textAlign: 'center',
	    name: 'green',
	    tip: 'topMiddle'
	}
    });

    $('.fermeture').qtip({
        content:'Fermeture exceptionnelle',
	position: {
	    corner: {
	        tooltip: 'topMiddle',
	        target: 'bottomMiddle'
	     }
	},
	style: {
	    border: {
	        width: 3,
		radius: 3
	    },
	    padding: 10,
	    textAlign: 'center',
	    name: 'red',
	    tip: 'topMiddle'
	}
    });
}

function icon_categories_tooltip() {

    $('.categories img').qtip({
	position: {
	    corner: {
	        tooltip: 'topMiddle',
	        target: 'bottomMiddle'
	     }
	},
	style: {
	    border: {
	        width: 3,
		radius: 3
	    },
	    padding: 5,
	    textAlign: 'center',
	    name: 'dark',
	    tip: 'topMiddle'
	}
    });

}
