// Custom Styles
$(document).ready(function(){
	$('.content').jScrollPane({showArrows: true});
	
	$('.faq h3').click(function() {
	$('.faqshow').hide();
	$(this).parents('.faqwrap').children('.faqshow').show();	
	return false;
	});

});

