(function($) {
	$.fn.lrworld_ElementSlideToggle = function()
	{
		this.find('h1,h2,h3').each(function() {
			$(this).html('<a href="#" onclick="return false;">' + $(this).text() + '</a>');
		}).click(function() {
			$('h3.open').not(this).next('div.bodytext').slideUp('slow').removeClass('open');
			$(this).addClass('open').next('div.bodytext').slideToggle('slow');
		}).next('div.bodytext').hide();
	};
})(jQuery);

