//Function zum Vorladen

try {
	(function($) {
		var cache = [];
		// Arguments are image paths relative to the current page.
		$.preLoadImages = function() {
			var args_len = arguments.length;
			for (var i = args_len; i--;) {
				var cacheImage = document.createElement('img');
				cacheImage.src = arguments[i];
				cache.push(cacheImage);
			}
		}
	})(jQuery)
}
catch (e) {
	//Fehlerbehandlung
}

try {
	$(document).ready(function() {
		/*
		z.B.
		"image1.gif",
		"/path/to/image2.png"
		*/
		//Hier zwischen Bilder zum Vorladen einfuegen (nur Bilder, die nicht sofort sichtbar werden ohne Interaktion!)
		jQuery.preLoadImages(
			'images/bi-formular-aussparung-tooltip.jpg',
			'images/bi-formular-aussperrung-tooltip.jpg',
			'images/bi-formular-bedienelemente-tooltip.jpg',
			'images/bi-formular-breite-tooltip.jpg',
			'images/bi-formular-griffe-tooltip.jpg',
			'images/bi-formular-grundflaeche-tooltip.jpg',
			'images/bi-formular-hoehe-tooltip.jpg',
			'images/bi-formular-hohlkammergriffe-tooltip.jpg',
			'images/bi-formular-knoepfe-tooltip.jpg',
			'images/bi-formular-luftgitter-tooltip.jpg',
			'images/bi-formular-ma-luftgitter-tooltip.jpg',
			'images/bi-formular-rueckwand-tooltip.jpg',
			'images/bi-formular-spiralgriffe-tooltip.jpg',
			'images/bi-formular-tiefe-tooltip.jpg',
			'images/bi-formular-tuerfarbe-tooltip.jpg'
		);

		tooltipsPics = new Array(
			'formular-hoehe',
			'formular-breite',
			'formular-tiefe',
			'formular-rueckwand',
			'formular-grundflaeche',
			'formular-aussparung',
			'formular-tuerfarbe',
			'formular-spiralgriffe',			'formular-hohlkammergriffe',			'formular-knoepfe',
			'formular-luftgitter',
			'formular-ma-luftgitter'
		);
		tooltipsInfos = new Array(
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			'',
			''
		);
		maxTooltips = tooltipsPics.length;
		for (i=0;i<maxTooltips;i++) {
			$('span#' + tooltipsPics[i]).html('<span class="tooltip" id="images/bi-' + tooltipsPics[i] + '-tooltip.jpg" title="' + tooltipsInfos[i] + '">' + $('#' + tooltipsPics[i]).html() + '</span>');
		}
		tooltipPreview();

	}
);
}
catch (e) {
	//Fehlerbehandlung
}

