/*
	toggler.js
	requires jQuery

	Toggles on/off the paragraph following where the anchor is located, 
	providing they are both in a containing DIV.

		$(this).parent('div').find('p.toggle').fadeToggle(1000, 'linear');

*/

$(document).ready(function() {
	$('.toggler').click(function() {
		$(this).parents('div').find('p').slice(1,2).fadeToggle(1000, 'linear');
	});
});

