// code for navigation
$(document).ready(function() {	
	$(".faq-q h2").click(function(){
		$(this).parent().next('.faq-a').toggle(300);
	});	
});