 $(document).ready(function(){
 	$('div.lipExpand').after('<span class="lipView">(view)</span><span class="lipHide">(hide)</span>');
 	$('div.lipperDisclosure, span.lipHide').hide();
 	$('span.lipView').click(function(){
 		$(this).hide();
 		$(this).next().show();
 		$(this).next().next().slideDown('normal');
 	});
 	$('span.lipHide').click(function(){
 		$(this).hide();
 		$(this).prev().show();
 		$(this).next().slideUp('fast');
 	}); 	
 });