<!--
$(document).ready(function() {
$('<p><span id="selAll">[Open all]</span>Click on a question below to see detailed answer.</p>').css('font-style','italic').insertBefore('#centercolumn dl:first');
$('#selAll').css({'text-decoration': 'underline', 'float': 'right', 'cursor': 'default', 'font-style': 'normal', 'color': '#063'});
$('dl:first').find('dd').hide().css('padding','3px 0px 6px 16px').end()
.find('dt').wrapInner('<span></span>').find('span').addClass('question')
.click(function () {
    question = $(this);
    answer = $(this).parent().next();
    if (answer.is(':visible')) {
        question.removeClass('qOpen')/*.css('background-image', 'url(../../images/arrow_gray_east.gif)')*/;
        answer.slideUp(); 
    } else { 
		question.addClass('qOpen')/*.css('background-image', 'url(../../images/arrow_gray_south.gif)')*/;
		answer.slideDown('slow'); 
	}			
});
	$('#selAll').toggle(function () { 
    $this = $(this); 
    $answer = $('dl:first').find('dd');
    $question = $('dl:first').find('dt > span')
    .addClass('qOpen')/*.css('background-image', 'url(../../images/arrow_gray_south.gif)')*/; 
    $this.text('[Close All]').css('color','red');
    $answer.slideDown('slow');
}, function ()
{
    $this.text('[Open All]').css('color','#063'); 
    $question.removeClass('qOpen')/*.css('background-image', 'url(../../images/arrow_gray_east.gif)')*/;
    $answer.slideUp();
});
});
//-->