/*	smooth scrolling for same-page links	*/
$(document).ready(function(){
	$('a[href*=#]').click(function(){
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
			&& location.hostname == this.hostname){
			$('html,body').animate({scrollTop: 0}, 1000,'easeinout');
			return false;
/*
				var $target = $(this.hash);
				$target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');

				if ($target.length){
					var targetOffset = $target.offset().top;
					alert( targetOffset );
					$('html,body').animate({scrollTop: targetOffset}, 400);
					return false;
				}
*/
		}
	});

/*	blend in|out captcha info-box on contact-page	*/

	function showCaptchaInfo(){ $('#whythisInfo').fadeIn("normal"); }
	function hideCaptchaInfo(){$('#whythisInfo').fadeOut("normal"); }

	$('#whythis').mouseover( function() { showCaptchaInfo(); } );
	$('#whythis').mouseout( function() { hideCaptchaInfo(); } );
});