$(document).ready(function() {
								   
			$("#FAQ ol > li").click(function() {
			
				var qu = $(this).attr("id");
				var an = "#" + qu.replace("Q_","A_");
				
				$.scrollTo(an, {duration: 800, axis:"y", onAfter:function(){
					$(an).effect("highlight", {color: "#EEEEEE"}, 2000); }
				});
			});

			// step 11
			$(".return-top").click(function() {
				$.scrollTo("#page-body", {duration: 800, axis:"y"});
			});

		});	
