// JavaScript Document

var arrayData = [
	'Sa&scaron;a Perugini',
	'Camille Crites',
	'Rossana Degli Innocenti',
	'Matteo Duni',
	'Lucia Fantoni',
	'Antonella Francini',
	'Jennifer Haag',
	'Sylvia Hetzel',
	'Jim Kauffman',
	'Amy Kleine',
	'Swietlan Kraczyna',
	'Fabio Landi',
	'Silvia Landi',
	'Rosa Mannino',
	'Sara Matthews-Grieco',
	'Roberta Mugelli',
	'Marta Rossi',
	'Elaine Ruffolo',
	'Gelso Sassonia',
	'Debora Spini',
	'Loredana Tarini',
	'Michelle Tarnopolsky',
	'Vittoria Tettamanti'
	];
$('.staff-container div img').each(function(i){
	$(this).qtip({
		content: arrayData[i],
		position: {
			corner: {
				target: 'rightTop',
				tooltip: 'leftMiddle'
			},
			adjust: {
			  x: -5
			}
		},
		style: {
			//width: 75,
			padding: 5,
			background: '#FFFFFF',
			color: '#333333',
			textAlign: 'center',
			border: {
				//width: 7,
				radius: 3,
				color: '#993333'
			},
			tip: 'leftBottom',
			name: 'red' // Inherit the rest of the attributes from the preset dark style
		},
		show: 'mouseover',
		hide: 'mouseout'
		})
	})
