/*
 *	Startup file with functions for general features on website (excluded from booking ibe and customer login)
 *
 */


function preload(arrayOfImages) {
    $(arrayOfImages).each(function(){
		var this_src = "img/nav_" + this + "_hover.png";
        (new Image()).src = this_src;
    });
}

$(function() {

/* ------------------------------------------------ lightbox call -------------------------------------------------- */
	// Select all hyperlinks in object with this DIV-ID (links on thumbs)  [DISABLED]

	/*
	$('#lightbox a').lightBox({
		txtImage: 'Bild',
		txtOf: 'von'
	});
	*/


	// Select all hyperlinks in object with this CLASS (links on thumbs)

	$('a.lightbox').lightBox({
		txtImage: 'Bild',
		txtOf: 'von'
	});


	// Select all hyperlinks in object with this CLASS (links on thumbs)

	$('a.meinungen_lightbox').lightBox({
		txtImage: 'Bild',
		txtOf: 'von'
	});


	// Select all hyperlinks in object with this CLASS (links on thumbs)

	$('a.meinungen_lightbox_erwin').lightBox({
		txtImage: 'Seite',
		txtOf: 'von'
	});
/* ------------------------------------------------ END lightbox call -------------------------------------------------- */

	preload(["home", "kontakt", "login", "meinungen", "reisen", "unternehmen", "gewinnspiel"]);
});

