// JavaScript Document

$(document).ready(function(){
	$('div.expander div:not("div.expander div div")').hide().end();
	$('div.expander h4').wrapInner('<a href="javascript:void(0)"></a>').end();
	$('div.expander h4.more a').append('<span>More Information</span>')
	$('div.expander h4 a').click(function() {
		var $expander = $(this).parent().next('div');
		if ($expander.is(":hidden")) {
			$expander.slideDown();
			if ($(this).parent().hasClass('more')) {
				$(this).children('span').html('Hide');
			}
		} else {
			$expander.slideUp();
			if ($(this).parent().hasClass('more')) {
				$(this).children('span').html('More Information');
			}
		}
	});
	
	$("blockquote").before("<span class='tquote'>&ldquo;</span>");  
	$("blockquote").after("<span class='bquote'>&rdquo;</span>"); 

});