window.onload = function() {
	
	myHeight = new fx.Height('nav', {duration: 400});
	myHeight.hide();
	
	faq = new fx.Height('faq_content', {duration:400});
	faq.hide();
	
	$('but_faq').onclick = function() {
		faq.toggle();
	};
}

