$(document).ready(function(){
	var regp = /nav_([\w]+)/;



	$("a[href^=#]").each(function(){
		$(this).click(function(){
			item=this;
			gotolink = $(this).attr("href");
			$(this).removeAttr("href");
			$('html, body').animate(
				{ scrollTop: $(gotolink).offset().top}, 
				Math.abs(.8*($(item).offset().top-$(gotolink).offset().top)),
				function(){
					$(item).attr("href",gotolink);
				}
			);
		});
	});


	$("#navigation_bar li").hover(
		function(){	$(this).children("a").animate({ opacity: 0.9, top:"-10px" }, 250 );},
		function(){ $(this).children("a").animate({ opacity: 1, top:"0px" }, 250 )
	});

	$(".nav_home").hover(
		function(){ $(this).animate({ opacity: 0.9, bottom:"10px" }, 250 );},
		function(){ $(this).animate({ opacity: 1, bottom:"0px" }, 250 )
	});

});
