$j(document).ready(function() {
	$j('a.question').click(function() {
		$j(this).blur().parent().find('p').toggle();
		
		return false;
	});
    
    if (document.location.hash != '') {
        node = $(document.location.hash.replace('#', ''));
        $A(node.getElementsByTagName('p')).each(function(p) { Element.show(p); });
        $A(node.getElementsByClassName('question')).each(function(q) { q.addClassName('highlight'); });
    }
});


