jQuery(document).ready(function() {
	
jQuery("div.Toggle").each(function () {
		var title = $(this).attr("title");
	
	jQuery(this).before("<p class='ToggleP'>' + title + '</p>");
	
	jQuery(".ToggleP").next().hide();
	
	$(this).prev().text('Show ' + title + '');
	
	jQuery(this).prev().click(function () {
		$(this).text($(this).text() == 'Show ' + title + '' ? 'Hide ' + title + '' : 'Show ' + title + '');
		$(this).toggleClass('ToggleS');
		jQuery(this).next().slideToggle();
		return false;
	});
});
	
	
});


$(document).ready(function() {
	 var title = $("div.ToggleBox").attr("title");
	jQuery("div.ToggleBox").after("<p class='ToggleBP'>Show more information</p>");
	
	
	
	jQuery(".ToggleBP").click(function () {
		$(this).text($(this).text() == 'Show less information' ? 'Show more information' : 'Show less information');
		$(this).toggleClass('ToggleBS');
		
		$(this).prev().toggleClass("ToggleBoxS");
		
		
		
		return false;
	});
});