// Tooltips

// Preload all images
$(document).ready(function() {
	$.preload([ 'skrob', 'sramm', 'sklipp', 'slau', 'lsdd', 'sweesen', 'rsdd', 'stallhof', 'fdres', 'sburgk', 'zwinger', 'swacker', 'fsmoritz', 'smoritz', 'sfreud', 'abmeiss', 'saugust', 'snossen', 'sschlett', 'shart', 'wsklaff', 'sroch', 'sschwarz', 'scold', 'splicht', 'sgueld', 'bsdeli', 'obbau', 'bstolp', 'fkoenig', 'bscharf', 'swild', 'bkrieb', 'bmild', 'bgnand', 'fpp', 'gsedlitz', 'sppill', 'grgart', 'slicht', 'kpbel', 'bkwech', 'kbuch', 'kpalt', 'shalth', 'shgauss', 'bhohn', 'shddpill', 'paus', 'hkemp', 'jhscold', 'hsschwein' ], {
		base:'/fileadmin/templates/pages/img/bas/tt-',
		ext:'.gif',
		onComplete:function( data ){
			var img = new Image();
			img.src = data.image;
			// $('#map').append(img);
		},
		onFinish:function( data ){
			$('area').each(function() {
				tipId = $(this).attr('id');
				$(this).qtip({
					content: '<img src="/fileadmin/templates/pages/img/bas/tt-' + tipId + '.gif" alt="" />',
					position: {
						adjust: { x: 0, y: -3 },
						corner: { target: 'topMiddle', tooltip: 'bottomMiddle' }
					}, 
					style: {
						background: '#FABB00',
						name: 'cream',
						border: { width: 1, radius: 5, color: '#FABB00' }, 
						tip: true
					}
				});
			});
		},
	});
});
