try {
	document.execCommand('BackgroundImageCache', false, true);
} catch(e) {}

if ( typeof $ == 'function' ) {
	$(function(){
		$('.faq li')
			.find('a')
				.click(function(){
					$(this).next()
						.slideToggle('fast',function(){
							$(this).parent()
								.toggleClass('close')
								.toggleClass('fpod')
							});
				})
			.next()
				.hide();
			
	});
}
