$(document).ready(function() {


	$('p#payPalInfoIntro').append('&nbsp;<span class="more">Learn more&#8230;</span>');


	$('p#payPalInfoIntro span.more').addClass('linkify');


	$('p#payPalInfoIntro span.more').click(function() {
		$('p#payPalInfoIntro span.more').removeClass('linkify');
		$('dl.payPalInfo').show('slow');
	});


	$('#homeSidebar #events span.linkify').toggle(function() {
//			$(this).parent().css('margin', '0');
			$(this).addClass('open');
			$(this).html('Less&uarr;');
			$('div.expandedInfo').slideDown();
		}, function() {
			$('div.expandedInfo').slideUp();
			$(this).removeClass('open');
			$(this).html('Read a little more &darr;');
//			$(this).parent().css('margin-bottom', '1.5em');
	});




/* 	w3.org say: Note. We recommend that style sheet implementations provide a mechanism for inserting quotation marks before and after a quotation delimited by BLOCKQUOTE */
	$('blockquote p:first-child').prepend('<span class="qdo"><span>&#8220;</span></span>');
	$('blockquote p:last-child').append('<span class="qdc"><span>&#8221;</span></span>');









});

