$(function() {

	

	// setup tooltip for a single DIV element
	$("#reiter-menu a:first").tooltip({

		// each trashcan image works as a trigger
		tip: '#tooltip-nopma',

		// custom positioning
		position: 'center center',

		// move tooltip a little bit to the right
		offset: [113, 0],

		// there is no delay when the mouse is moved away from the trigger
		delay: 0
	});
	
	// setup tooltip for a single DIV element
	$("#reiter-menu a:last").tooltip({

		// each trashcan image works as a trigger
		tip: '#tooltip-meiser',

		// custom positioning
		position: 'center center',

		// move tooltip a little bit to the right
		offset: [113, -120],

		// there is no delay when the mouse is moved away from the trigger
		delay: 0
	});

	

});
