/*
$(document).ready(function(){
  // Your code here...
});
*/

//Frequently asked questions

if (location.href.indexOf('#'))
{
var isAnchored = true;
var activeID = location.href.substring(location.href.indexOf('#')+1,location.href.length);
} else {
var isAnchored = false;
}

$(document).ready(function(){
	$("dd").hide();
        if (isAnchored) {
            $("dt#"+activeID+'-anchor').next().show();
        } else {
            $("dd:first").show();
        }
	$("dt a").click(function(){
	$("dd:visible").slideUp("slow");
	$(this).parent().next().slideDown("slow");
	return false;
	});
});

