$(document).ready(function() {
	var showText="Expand";
	var hideText="Collapse";	
		$(".toggle").prev().append('<a href="#" class="toggleLink">'+showText+'</a>');
		$('.toggle').hide();		
		$('a.toggleLink').click(function() {
			if ($(this).text()==showText) {
			$(this).text(hideText);
			}
			else {
			$(this).text(showText);
			}
	$(this).parent().next('.toggle').slideToggle('fast');	
	return false;	
	});
});

