// INIT SITE-SCRIPTS
$(document).ready(function() {

	$('a.local').click(function() {
		var target = $(this).attr('href'); //this verweist auf benutztes Element
		$.scrollTo($(target), 1000, { 
			onAfter:function(){
				window.location.hash = target;
			}
		});
		return false;
	});
	
	
	$('#nav li').hover(
		function () {
			//show its submenu
			$('ul', this).slideDown(100);

		}, 
		function () {
			//hide its submenu
			$('ul', this).slideUp(100);			
		}
		
	);
	
    $.scrollTo('#index');
	
	
});

