$(function()
  {
  setze_hoehe();
  
  $('a.cx-lightbox').lightBox(
    {
	imageLoading: JS_rb+'global/lightbox/lightbox-ico-loading.gif',
	imageBtnClose: JS_rb+'global/lightbox/lightbox-btn-close.gif',
	imageBtnPrev: JS_rb+'global/lightbox/lightbox-btn-prev.gif',
	imageBtnNext: JS_rb+'global/lightbox/lightbox-btn-next.gif',
	containerResizeSpeed: 350,
	txtImage: 'Bild',
	txtOf: 'von'
    });
  
  $('#photos').show();
		$('#photos').galleryView({
			panel_width: 600,
			panel_height: 390,
			frame_width: 100,
			frame_height: 70,
			transition_speed: 700,
			transition_interval: 3000,
			overlay_height: 50,
			overlay_opacity: 0.0,
			overlay_color: 'black',
			overlay_text_color: 'white',
			caption_text_color: 'white',
			border: '1px solid black',
			background_color: '#666',
//			border: 'none',
			nav_theme: 'light',		
//			easing: 'easeInOutQuad',
			easing: 'swing',
			filmstrip_position: 'bottom',
			overlay_position: 'bottom',
			show_captions: false,
			fade_panels: true,
			pause_on_hover: true
		});

	$.superbox.settings = {
	boxId: "superbox", // Id attribute of the "superbox" element
	boxClasses: "", // Class of the "superbox" element
	overlayOpacity: .8, // Background opaqueness
	boxWidth: "600", // Default width of the box
	boxHeight: "400", // Default height of the box
	loadTxt: "Laden...", // Loading text
	closeTxt: "Beenden", // "Close" button text
	prevTxt: "Zur&uuml;ck", // "Previous" button text
	nextTxt: "Weiter" // "Next" button text
	};
  
  $.superbox();

  });




function setze_hoehe()
  {
  $('#inhalt').height($('body').height()-159-110);
  }
$(window).resize(function()
  {
  setze_hoehe();
  });

