/*
#############################################################################################################
########## Alle Javascript Funktionen und Definitionen
##########
########## @author		Trans Ident Line GmbH / vls
########## @update		01.08.2009
########## @editor		vls
#############################################################################################################
*/


			$(document).ready(function()
			{


/*
#############################################################################################################
########## Lightbox
*/

				if (window.$.fn.lightBox)
				{
					lightbox_optionen = {
				    	imageLoading:	"/common/jquery/lightbox/images/lightbox-ico-loading.gif",
						imageBtnPrev:	"/common/jquery/lightbox/images/zurueck.gif",
						imageBtnNext:	"/common/jquery/lightbox/images/weiter.gif",
						imageBtnClose:	"/common/jquery/lightbox/images/close.png",
						imageBlank:		"/common/jquery/lightbox/images/lightbox-blank.gif",
						txtImage:		"Bild",
						txtOf:			"von",
						showNumbers:	false,
						actionClass:	"leuchtkasten_action",
						actionTitle:	"Dieses Bild in den Leuchtkasten legen",
						updateFunction:	"/leuchtkasten/update_anzahl_bilder.php",
						updateField:	"#anzahl_bilder"
					};

				    $("a[rel='lightbox[a]']").lightBox(lightbox_optionen);
				    $("a[rel='lightbox']").lightBox(lightbox_optionen);
				}



/*
#############################################################################################################
########## Ende document.ready
*/

			});
