var faq = {
	fxs: Class.empty,
	init: function() {
		faq.fxs = new Fx.Scroll(window, {
			offset: {'x':0,'y':-20}
		});
		$$('#faq .questions a').each(function(q) {
			q.addEvent('click', function(e) {
				e = new Event(e).stop();
				var a = 'post-' + this.href.split('#')[1];
				$(a).set('tween', { duration: 2000 });
				faq.fxs.toElement($(a)).chain(
					function() { $(a).highlight('#c5c999') }
				);
			});
		});
	}
};

window.addEvent('domready', faq.init);