//-----------------------------------------------------------------
// inhalt nachladen
  $(function () {
    $('#loadContent1').load('include/leistungen.html');
    $('#loadContent2').load('include/einrichten.html');
    $('#loadContent3').load('include/begruenung.html');
    $('#loadContent4').load('include/beleuchtung.html');
    $('#loadContent5').load('include/raumausstattung.html');
    $('#loadContent6').load('include/buerobedarf.html');
    $('#loadContent7').load('include/mietbuero.html');
    $('#loadContent8').load('include/agb.inc.php');
    $('#loadContent9').load('include/kontakt.inc.php');
  });


//-----------------------------------------------------------------
// galerie
		$(function(){
			$('#slides').slides({
				preload: true,
				preloadImage: 'images/galerie/loading.gif',
				play: 5000,
				pause: 2500,
				hoverPause: true,
				animationStart: function(current){
					$('.caption').animate({
						bottom:-70
					},100);
					if (window.console && console.log) {
						// example return of current slide number
						console.log('animationStart on slide: ', current);
					};
				},
				animationComplete: function(current){
					$('.caption').animate({
						bottom:30
					},230);
					if (window.console && console.log) {
						// example return of current slide number
						console.log('animationComplete on slide: ', current);
					};
				},
				slidesLoaded: function() {
					$('.caption').animate({
						bottom:30
					},230);
				}
			});
		});


//-----------------------------------------------------------------
// links
	jQuery(function($) {
		var slide = false;
		var height = $('#footer_content').height();
		$('#footer_button').click(function() {
			var docHeight = $(document).height();
			var windowHeight = $(window).height();
			var scrollPos = docHeight - windowHeight + height;
			$('#footer_content').animate({ height: "toggle"}, 1000);
			if(slide == false) {
				if($.browser.opera) {
					$('html').animate({scrollTop: scrollPos+'px'}, 1000);
				} else {
					$('html, body').animate({scrollTop: scrollPos+'px'}, 1000);
				}
				slide = true;
			} else {
				slide = false;
			}
		});
	});


//-----------------------------------------------------------------
// linfo
function see1(gal)
{
document.getElementById("infoa").style.visibility = 'hidden';
document.getElementById("info").style.visibility = 'hidden';
document.getElementById(gal).style.visibility = 'visible';
}




