$(document).ready(function() {
	// BEGINN CONTENT-SLIDE
		$('a[href^=#]').bind("click", function(event) {
			event.preventDefault();
			var ziel = $(this).attr("href");
			var time = 1000;
			var distTarget = Number($(ziel).offset().top);
			var distThis = Number($(this).offset().top);
			var range = (distTarget - distThis);
			if (range <= 0) range = range * -1;
			if (range > 1500) time = 1500;
			if (range > 3000) time = 2500;
			
			$('html,body').animate({
			scrollTop: $(ziel).offset().top
			}, time , function (){location.hash = ziel;});
		}); 
	// ENDE CONTENT-SLIDE

	// BEGINN INPUT-OPTIONEN
		// Focus (gestrichelter Rahmen) um Input unterdruecken 
		$('input[type=submit]').focus(function() { if ($(this).blur()) { $(this).blur(); } });
		// Value von Input (type=text) bei Klick manipulieren
		$('input[type=text]').click(function() { if (this.value == this.defaultValue) { this.value = ''; } });
		$('input[type=text]').blur(function() { if (this.value == '') { this.value = this.defaultValue; } });
	// ENDE INPUT-OPTIONEN

	$("ol li").each(function (i) {
		if (i % 2 == 1) $(this).addClass("second_list_item");
	});
});


