

$(document).ready(function(){


	$("#FAQ .sectionHeader").click(function(){
		if ($(this).hasClass("Open")) {
			$(this).removeClass("Open");
			$(this).children(".toggle").text("+");
			$(this).next(".section").slideUp("fast");
		}
		else {
			$(this).addClass("Open");
			$(this).children(".toggle").text("-");
			$(this).next(".section").slideDown("fast");
		}
	});

	$("#FAQ .question").click(function(){
		if ($(this).hasClass("Open")) {
			$(this).removeClass("Open");
			$(this).children(".toggle").text("+");
			$(this).next(".answer").slideUp("fast");
		}
		else {
			$(this).addClass("Open");
			$(this).children(".toggle").text("-");
			$(this).next(".answer").slideDown("fast");
		}
	});

	$("#wvSvcMap").click(function(){
		if ($(this).hasClass("open")) {
			$(this).removeClass("open")
			$(this).children("img").animate({ width: "84px", height: "80px" },500);
			$(this).children("i").text("Click to enlarge");
		}
		else {
			$(this).addClass("open")
			$(this).children("img").animate({ width: "418px", height: "403px" },500);
			$(this).children("i").text("Click to shrink");
		}
	});

});

