$(function() {          
          $("ol#gallery img").lazyload({
             placeholder : "../img/grey.gif",
             effect      : "fadeIn"
          });
      });




$(document).ready(function() {		
						   
$('a.no_content').click(function() {
  $('li').removeClass('index');
  $('li').removeClass('active');
  $(this).parents('li.no_content').addClass('active');
  $(this).parents('li.no_content').addClass('active_submenu');
  return false
});	


    /*748 px ist ok für das impressum bild */		
		if ($(window).height() < 748) {
			$('body.impressum').css("background-position","left 460px");
			}
						   
						   
    jQuery('#startseite').fadeSlideShow({
		width:657, // width of your slideshow
		height:600, // height of your slideshow
		speed: 'slow', // speed of the transition effect
		interval:5000 // interval time between image change
	});
	$('a[href*=#]').bind("click", function(event) {
		event.preventDefault();
		var ziel = $(this).attr("href");

                if ($.browser.opera) {
                    var target = 'html';
                }else{
                    var target = 'html,body';
                }

		$(target).animate({
			scrollTop: $(ziel).offset().top
		}, 800 , function (){location.hash = ziel;});
});
return false;
});

