$(document).ready(function(){
	
	$('#nojs').remove();
	$('#header ul a').append('<span />')
	$('#header ul a span').fadeTo(0,0);
	$('#header ul a').hover(
		function(){$(this).find('span').stop().animate({opacity: 1}, 100);}, 
		function(){$(this).find('span').stop().animate({opacity: 0}, 500);}
	);
	
	$('.blank').click(function(){ window.open(this.href);return false });	
	
	$('#faqs h3').each(function() {
		var tis = $(this), state = false, answer = tis.next('div').hide().css('height','auto').slideUp();
		tis.click(function() {
			state = !state;
			answer.slideToggle(state);
			tis.toggleClass('active',state);
		});
	});

});
