$(document).ready(function() {
	$('.port-image ul').hide();
	$('.more_info').hide();
	var showText = " More";
	var hideText = " Less";
	$('.trigger').append(showText);
	$('.trigger').click(function() {
		$(this).next().slideToggle('fast');
			/*if ($(this).html()=="Read" + showText) {
				$(this).html("Read" + hideText);
			}
			else {
				$(this).html("Read" + showText);
			}*/
		$(this).css({'visibility':'hidden'});
	});
});