$(document).ready(function(){
	// toggle boxes
	$('a.toggle').toggle(function(){
			el = $(this);
			$(this).parent('<h3>').parent('div').next('div').slideToggle('fast',function(){
			el.removeClass('close').addClass('open');
		});
		return false;
	},function(){
			el = $(this);
			$(this).parent('<h3>').parent('div').next('div').slideToggle('fast',function(){
			el.removeClass('open').addClass('close');
		});
		return false;
	});
	
	// apply 'imagelink' class to images in the main content
	$('a img').parent('a').addClass('imagelink');
	// apply 'textlink' class to regular links in the main content
	//$('p a').addClass('textlink');
	// apply 'citelink' class to links in block quote
	$('blockquote a').addClass('citelink');

	// apply drop cap
	applyDropCap();

});

function applyDropCap() {
  var first_paragraph = $('#content-body p')[1];
  if (!first_paragraph) return false;
  $(first_paragraph).addClass('excerpt');
}