// snatched from the excellent "palpable"-template available at www.textplates.com

window.onDomReady(function(){
	new SmoothScroll({
		transition:Fx.Transitions.Quart.easeInOut,
		duration: 1000
	});

  // we don't really need this but its nice
	$$("#nav ul li").each(function(el){
  	el.addEvent("mouseover",function(){this.addClass("hover")});
  	el.addEvent("mouseout",function(){this.removeClass("hover")});
	});

	
});

