$(document).ready(function(){
	
	var hash = unescape(self.document.location.hash.substring(1));
	
	if (hash == "") {
    	    $("#faq dt:first").addClass("active");
        	$("#faq dd:not(:first)").hide();
  	}

	else {
	    $("#" + hash).addClass("active");
    	$("#faq dt:not(#" + hash + ") + dd").hide();
    }

	$("#faq dt").click(function(){
		$(this).next("dd").slideToggle("fast").siblings("dd:visible").slideUp("fast");
		$(this).toggleClass("active").siblings("dt").removeClass("active");
	});
	
	$(".charityOther").watermark('Type your preferred charity');
    $(".charityAllowBranch").watermark('Type your choice here');
});


