$(document).ready(function(){

	$("ul.hiddenLi").hide();
	$("li.mark").append("<br /><br /><a href='#' title='expand the list'>[See More Suggestions]</a><br /><br />");
	$("a[title='expand the list']").toggle(function() {
	
		$(this).text("[Minimize Expanded Suggestions]");
		$("ul.hiddenLi").slideDown();
	
	}, function(){
	
		$(this).text("[See More Suggestions]");
		$("ul.hiddenLi").slideUp();
	
	});

});